Showing posts with label Windows 7. Show all posts
Showing posts with label Windows 7. Show all posts

Monday, 19 May 2014

Removing Yellow Tint in Windows Picture Viewer in Windows 7

See the table below


Image Viewed in Windows Picture Viewer showing yellow tint Same Image in Paint .NET

To correct this problem follow the steps mentioned below [Please note that if you have set the Color profile manually then don’t alter it. This may affect your work especially if you are an artist or a graphics engineer]
  • Right click on Desktop. Click on the menu item Screen Resolution
  • In the appeared window click on "advanced settings"
  • Now a tabbed window will appear. Click on "Color Management" button in the "Color Management" tab
  • Ensure that the device selected is the Display you are using.
  • Tick the check box "Use my settings for this device". Otherwise you won't be able to change the Profiles associated with the device.
  • Then Add the Profile named "sRGB IEC61966-2.1". Select the added profile and click on "Set as Default Profile".

  A preview of all the window is shown below

  • Remove the other profile.

  • Click on Close – OK – OK
  • Now refresh the desktop. Open the image in Picture Viewer.


Tuesday, 26 November 2013

Windows Registry location for Start-up Items


Login to Windows as administrator user. Now type “regedit” in the Run window. Press enter. This will bring the Registry Editor application.
Expand to the following key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
As shown in the screen shot below the key will list the items that will start on logging to windows.You can delete the unwanted entries from the right pane [Please take a backup of registry before dealing with it]



Also you can check one more key
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
This key belongs to that of the current user. From this key also you can delete unwanted entries.
This key is for user specific startup setting while the first one is for machine specific startup setting. The entries under the first one will affect all the users of the system, while the entries under this key will affect only the current user. In our case this is the administrator user of the system

Tuesday, 30 April 2013

Some PowerShell Commands

 

Restarting Computer

Use the following command to restart the local computer

Restart-Computer

Shutdown Computer

Use the following command to restart the local computer

Stop-Computer

Renaming Computer

Use the following command to restart the local computer

Rename-Computer -NewName <name_in_string>

You need to restart the computer after renaming. If you want powershell to do it use the “-Restart” option as shown below

Rename-Computer -NewName <name_in_string> -Restart

Monday, 22 April 2013

Changing the location of “Windows Update” folder in Windows 7


Normally the Windows Update folder named “SoftwareDistribution” folder is located in %systemdrive%\Windows. All the Windows Update files downloaded by Windows is kept in this folder. This will gradually eat up a lot of space in the %systemdrive%. To change this folder to some other location do the following.
  1. Stop the Windows Update service
  2. Move the “SoftwareDistribution” folder to the desired drive. Now there will be no folder named "SoftwareDistribution" in the path "%systemdrive%\Windows".
  3. Now open the command prompt in “Administrator” mode (Type “cmd” in start menu search box and press ctrl+shift+enter)
  4. Change to “Windows” directory by issuing the command “cd %systemdrive%\Windows
  5. Now use the command "mklink" to create a junction point to the “SoftwareDistribution” folder, that you moved to a different drive. The command is “mklink /J SoftwareDistribution <path to the new location>
  6. This will save your system drive from being eaten up by Windows Update

Changing FTP access method in Windows


By default Windows uses Passive FTP access method. If you want to change this method to Active please follow the steps below
  1. Open Internet Explorer.
  2. Go to Internet Options.
  3. Go to the “Advanced” tab.
  4. Uncheck the checkbox named “Use Passive FTP (for firewall and DSL modem compatibility)”.
  5. Click “Apply” and then “OK” button.
  6. Now close IE and try to access an FTP location. It will be in “Active” mode

Windows About Dialog Box


To display the Windows about dialog box, please type the command “winver’ in Run prompt and press the enter key. You will see a dialog box similar to the one shown below. This is for Windows 7 Ultimate edition


The dialog box shows the following details
  1. Windows Version with build number and service pack if any
  2. The owner of the product
  3. Copyright notification from Microsoft

Tuesday, 26 February 2013

arp and ipconfig commands in Windows 7

These commands help a system administrator, while troubleshooting the network problems of a system

arp

This command helps to view and modify the ARP cache of a system. Please see some of the useful variants of this command below

arp –a

This variant will display the ARP cache entries for all the active network interfaces of the system

arp –d * | arp –d

These variant will help to delete all the ARP cache entries.

arp –a ip_address

This variant displays the ARP cache entry for that particular ip address

arp –d ip_address

This variant delete the ARP cache entry for that particular ip address

ipconfig

This command helps to view the ip address configuration for the system

ipconfig

This variant will display the summary IP information for the system

ipconfig /all

This variant will display the detailed IP information for the system

ipconfig /displaydns

This variant will display the DNS resolver cache entries for the system

ipconfig /flushdns

This variant will flush the DNS cache of the system

Mapped network drives in Windows 7 Registry

When we map a network drive persistently in windows 7 an entry relating to the drive is created under the following key in registry:

HKEY_CURRENT_USER\Network

For each drive a key with the name as that of the drive letter is created. For example if you mapped a network drive with letter “W” the key will be “HKEY_CURRENT_USER\Network\W”

The key will contain the following values

 

Value Name Type Description Default Value
Connection Type REG_DWORD What is the type of this connection.
If it is Drive redirection the value will be 1 and if it is Print redirection value will be 2
1
DeferFlags REG_DWORD Whether the drive need to be connected immediately on logon or not.
If the mapped drive’s credential is same as that of logged on user or the credentials have been saved the value will be 4.
If the username part of the credential is different and password not saved value will be 1.
 
ProviderName REG_SZ What type of network provider is used to connect to the network drive Microsoft Windows Network
ProviderType REG_DWORD What type of Provider is used.
For Microsoft LanMan Provider the value will be 0x002000. For other third party vendor provider different numbers will come
0x002000
RemotePath REG_SZ UNC path of the share  
UserName REG_SZ The username used to connect to the share. If current user is used the value will be blank. (blank)

Debian Deep Dive — Filesystem Hierarchy Standard

// System Administration · Debian Linux · Foundation The Linux Filesystem Hierarchy A thorough tour of the standard an...