Sticky notes application can be launched from command line by running the command 'Stikynot'. Same command can also be used from Run window too.
Windows XP, Vista and Windows 7 Command Line Tips
Sticky notes application can be launched from command line by running the command 'Stikynot'. Same command can also be used from Run window too.
Snipping tool makes it easy to capture snapshot of the current screen. We can launch this tool from command line by running 'snippingtool' command. Same command can be used from Run command too.
While working in command prompt, many times we face a situation where we have to change to a directory on another drive. For example currently I am working in c:\users\techblogger folder and if I want to change to the directory e:\data\documents\ normally what I do is changing to the e: drive first and then doing 'cd' to the data\documents directory.
We can't delete files having system attribute set using del command from command line. For example in the folder c:\dir I have a file convert.exe. Now if I try to delete it from command line
Windows Vista and Windows 7 have lots of new games and Chess Titans is one of them. Playing with computer would be good time pass when you are alone and are bored. You can launch the game from Start -> All Programs -> Games and then clicking on Chess Titans. After launching the game click F5 to open options and then select appropriate level of difficulty.
This program(chess.exe) is installed in the directory c:\Program Files\Microsoft Games\Chess. This is not added to PATH environment variable. So if you want to launch chess game from command line, add this path to the PATH environment variable as below
c:\> SET PATH=$PATH;"c:\Program Files\Microsoft Games\Chess"
There are some bugs found in the Chess Titans game. Check the below videos.
To disable Encrypting File System feature on a System, administrators can run the below command from command prompt.
We can disable windows automatic updates from command line using the below command.
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v AUOptions /t REG_DWORD /d 1 /f
I have tested this on Windows XP and Windows server 2003 and it works perfectly. After running the above command you can also see a balloon popping up near the system tray with the message "Your computer might be at risk... Automatic updates is turned off......".
To enable automatic updates we need to set the registry value to 0. Command is given below.