Archive
How to Enable Windows 7 GodMode
GodMode is a hidden feature in Windows 7 as well as windows vista. By enabling this feature allows you to access all windows settings in a single place. It is a single folder that collects all of the control panel functions,interface customization,accessibility options etc..
Steps:
- Create a new folder
- Rename the folder to GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
- Then open it to show the GodMode window.
GodMode enabled..
Setting up a SFTP Server on Windows
SFTP stands for Secure File Transfer Protocol. Unlike FTP, SFTP transfers files securely by using SSH. Unix based machines are come with SSH preinstalled, But in Windows you need to install OpenSSH for this.It is an open source program. Once downloaded OpenSSH, run the setup file and make sure to install both server and client component.
1. At first you need to create a group and passwd file, Open command prompt then move to c:\program files\openssh\bin directory
Creating group file,
2. From bin shell type mkgroup -l >> ..\etc\group
Creating Passwd file
3.From bin shell type mkpasswd -l -u username >> ..\etc\passwd, “username” must be an existing windows user
Creating home directory for user
4. Default user home directory is “c:\document and settings\ username”. for changing the home directory there is two steps
a. Go to registry editor and move to HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\ /home , Open “NATIVE” key and change to new directory path.(Eg: c:\test)
b. Open C:\Program Files\OpenSSH\etc\passwd in notepad and change the entry /home/<username> to /home/
Client Side
To connect SFTP server ,you will need to install FTP client that supports SFTP. You can use an open source FTP client FileZilla, In FileZilla create a new connection, select the connection type as SFTP using SSH and select the normal user. “22 “is the communication port.
Login as system account
Login as system account
A” System” account is the most powerful user in a windows machine,but there is no direct option for login in it.
you can login in to “system” account by following these steps:
1. Open the command prompt(start > Run > “cmd”)
2. In command prompt Type at [TIME] /interactive “cmd.exe”. Replace the [TIME] with your local time in 24hrs format (don’t forget to add two minutes to your current time)
eg: At 13:42 /interactive cmd.exe
3. CMD.exe will start at the time you set for the schedule.
4. Open Task manager and terminate “explorer.exe”
5. In the second command prompt type “explorer.exe” and hit ENTER.
Now you are logged in the system account.you can do anything on this account even delete system files.
