Thursday, 15 May 2014
Tuesday, 13 May 2014
Easy way to add or delete user
Here is an easiest way which helps to create or delete user,
Command to create user:
SYNTAX: net user username password /add
EXAMPLE: NET USER TEST 123456 /ADD
Command to delete a user:
SYNTAX: net user username /del
EXAMPLE: NET USER TEST /DEL
Command to create user:
SYNTAX: net user username password /add
EXAMPLE: NET USER TEST 123456 /ADD
Command to delete a user:
SYNTAX: net user username /del
EXAMPLE: NET USER TEST /DEL
Monday, 12 May 2014
Enable or disable proxy though command line and registry.
It quite easy to set proxy through command prompt ans to enable or disable proxy settings.
Through Command:
1. To set proxy:
netsh winhttp set proxy [proxy server address:port number] [bypass list]
Example : netsh winhttp set proxy 192.168.1.2:8080 *.192.168.1.2
Result:
Current WinHTTP proxy settings:
Proxy Server(s) : 192.168.80.2:8080
Bypass List : *.192.168.80.2
2. To check the proxy settings:
netsh winhttp show proxy
3. To remove proxy settings:
netsh winhttp reset proxy
Through Registry:
1. Open regedit.exe
2. Navigate to "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings"
3. Create a DWORD "ProxyServer" and give the data as the proxyserver:port example: 192.168.80.2:8080
4. The above step will enable the proxy and make the data to "0" to disable proxy.
Through Command:
1. To set proxy:
netsh winhttp set proxy [proxy server address:port number] [bypass list]
Example : netsh winhttp set proxy 192.168.1.2:8080 *.192.168.1.2
Result:
Current WinHTTP proxy settings:
Proxy Server(s) : 192.168.80.2:8080
Bypass List : *.192.168.80.2
2. To check the proxy settings:
netsh winhttp show proxy
3. To remove proxy settings:
netsh winhttp reset proxy
Through Registry:
1. Open regedit.exe
2. Navigate to "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings"
3. Create a DWORD "ProxyServer" and give the data as the proxyserver:port example: 192.168.80.2:8080
4. The above step will enable the proxy and make the data to "0" to disable proxy.
Unlock machine using command Line.
Here is a command which allows to unlock a machine,
1. Open cmd prompt.
2. Type the command "rundll32.exe user32.dll, LockWorkStation"
3. Press enter.
1. Open cmd prompt.
2. Type the command "rundll32.exe user32.dll, LockWorkStation"
3. Press enter.
Monday, 5 May 2014
Command to open Windows Explorer through cmd.
Command to open Windows Explorer through cmd.
Here are the commands which are used to open the windows explorer from the command prompt. They are:
1. "start ."
2. "explorer ."
Here are the commands which are used to open the windows explorer from the command prompt. They are:
1. "start ."
2. "explorer ."
Monday, 7 April 2014
How to remove all games from Games Explorer on windows.?
Here are few ways that helps to enable or disable the games from Games Explorer.
Through regedit:
1. Open regedit.exe through run.
2. Navigate to the location : HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion
3. Delete the key "gameux".
Through UI:
1. Open "Turn Windows Features On or OFF" through start.
2. Disable Games.
Through regedit:
1. Open regedit.exe through run.
2. Navigate to the location : HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion
3. Delete the key "gameux".
Through UI:
1. Open "Turn Windows Features On or OFF" through start.
2. Disable Games.
Thursday, 3 April 2014
Registry Key to Disable shutdown
Here is the registry key which prevents a machine from shutdown by disabling the option. In-order to make it work, follow the below steps,
1. Open regedit.
2. Navigate to the path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer
3. Create a DWORD "NoClose" and modify the data to "1" to disable shutdown option.
The above registry path is for all the users and if it is to be implemented only for a particular user, use the location, HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer and do the same.
1. Open regedit.
2. Navigate to the path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer
3. Create a DWORD "NoClose" and modify the data to "1" to disable shutdown option.
The above registry path is for all the users and if it is to be implemented only for a particular user, use the location, HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer and do the same.
Subscribe to:
Posts (Atom)