answersLogoWhite

0

secret

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Different Novell servers and Console prompt?

secret


How do you shutdown Motorola DAC6000?

From the Console Prompt: stop_acc


What command prompt do you press to retrieve the last command entered one character at a time in the recovery console?

Enter F1 at the command prompt.


How do you restart if it ends after elite four?

Once you have saved the game at the prompt, you can turn your console off and on again.


What are two Windows 2000XP program files that can provide a command prompt window?

Windows desktop and The Recovery Console


Offers a Recovery Console and a Command Prompt window where you use DOS-like commands?

windows 2000/xp


How do you get the MAC address of another computer in a Novell network?

You could try to search the network for the current logged in user name and trace the network id to that name...If you are using novell server with windows workstations and you know the IP address of the PC, then you can type nbtstat -A in a DOS window.---First go to RUN and enter CMD. At the command prompt in the console window, type ping then space then ip address your remote address (which u want to know MAC address).[Example - ping 192.168.1.1].After getting reply end. Type arp -a then enter then MAC address will come.


What offers a recovery console and a command prompt window where you use DOS- like commands?

windows 2000/XP


How do you verify a successful telnet connection to a remote device?

check that the login prompt on your console has changed, and use the "show session" command


What is meant by the term command prompt?

Command prompt is a simple term meaning the place where you can enter system commands. It has different names on different systems, Windows -cmd(Command Prompt), Linux Mac - Terminal


I have to make a restaurant in C plus plus visual studio and i have a menu come up in my command prompt. Is there a way i can open another command prompt simultaneously so i can have an order form?

Yes but then you would have to write two programs. One for your menu console and another for your order form console. The order form can be spawned from your menu. Am not sure why you you would want to develop this "restaurant" in a console instead of a fully-fledged Windows application, but each to his own...


C plus plus get user input without prompting for it?

To prompt a user in C++ you use cout to output the prompt to the console (e.g., the screen). You then use cin to extract the input from the user. So to get user input without a prompt, simply do not output a prompt before accepting input. However, accepting user input without a prompt would be decidedly un-user-friendly, unless you can guarantee the input does not come from the keyboard. If you're not using the console and the program is actually running in an event-driven interface (such as Windows), then you need only trap the keyboard, mouse or other HID messages that are posted to your application via the application's message loop, and act accordingly.