Tag Archives: Windows

How to turn off “Automatic Updates” in Windows ?

How to turn off “Automatic Updates” in Windows ?
1. Login to the server as Administrator
2. Start >> Run >> gpedit.msc (hit enter)
3. Navigate to  “Local Computer Policy >> Computer Configuration >> Administrative Templates >> Windows Components >> Windows Update ”
4. Click on “Configure Automatic Updates”
5. Click “Properties” and select ” Disable” option
6. Save the changes and verify it from “My Computer (right click)>> Properties >>  Automatic Updates”

How to use IPSEC to filter packets ?

<!– @page { size: 8.5in 11in; margin: 0.79in } P { margin-bottom: 0.08in } –>

How to use IPSEC to filter packets ?

Internet Protocol security (IPSec) can be used to filter packets coming/going to the server. This can be done easily using Netsh IPSec tools.

Here first we need to add a filterlist‘ which contains a group of ‘filter’s. Each ‘filter’ is associated with some ‘filteraction‘ like permit or block.

A “policy” is the IPSec policy under which the rule is being applied and a “rule” is the one which links a policy to a filterlist and a filteraction. So as a result the rule make the action specified in the filteraction apply to the filters present in the filterlist.

Suppose I want to block all connection from IP 192.168.192.100. I will go like this.

1. Launch the command prompt (Start >> run >> cmd)

2. Add the filterlist.

C:\Documents and Settings\Administrator> netsh ipsec static add filterlist name=myfilterlist

3. Add filteraction

C:\Documents and Settings\Administrator> netsh ipsec static add filteraction name=myaction action=block

4. Add filter

C:\Documents and Settings\Administrator> netsh ipsec static add filter filterlist=myfilterlist srcaddr=192.168.192.100 dstaddr=Me

5. Add policy

C:\Documents and Settings\Administrator> netsh ipsec static add policy name=mypolicy assign=yes

6. Add rule

C:\Documents and Settings\Administrator> netsh ipsec static add rule name=myrule policy=mypolicy filterlist=myfilterlist filteraction=myaction

Now all the connections from/to IP 192.168.192.100 is blocked.

Alternatively we can configure all these using graphical interface. For that login to the server and open local security management console ( start >> run >> secpol.msc).

How to configure urchin for windows servers..?

Urchin configuration for windows can be done as follows.

1. Login to urchin panel.
2. Click Configuration.
3. Click on Profiles.
4. Click ADD button.
5. Enter Domain name in Profile Name
6. Forward Next >> Next
7. Add the source log file “Log Sources to Process” –>Check Option 1: Add Local Log Source

8. Browse “Log File Path” to C:\WINDOWS\system32\LogFiles\W3SVC**********

The exact name of this log folder, it can be found from Server as follows.

Start >> Run >> inetmgr >> Select domain & right click >> Properties

9. You can view the latest exe file “exyymmdd.log” format.
10. Give the “Log Source Name” as domain name.
11. Now finish the wizard by clicking Next >> Next.
12. You can schedule the urchin stats update form here. it

How to add additional disks in Windows

To add and partition secondary disks in a windows server follow the steps.

1. Login to server as Administrator.

2. Navigate  Start >> my computer (right click) >> Manage and select the Storage >> Disk Management link.

3. Here select the secondary drive, which should be listed as Disk 1 and un-initialized. Right click 
this drive, and select Format.

4. Finish the wizard.