Archive for July, 2009

Amazon EC2, S3, EBS

16/07/2009

Coming soon a blog post by Marc about Amazon EC2, S3, EBS. We have played around and build some machines, for now we are going to make a “cloud” simple network. Just see how it works. Later on we will post some batch scripts.

Tags:
Posted in Amazon | No Comments »

Firewall from the command line

09/07/2009

To Enable the Windows Firewall, use the following: netsh advfirewall set currentprofile state on To Disable the Windows Firewall, use the following: netsh advfirewall set currentprofile state off If you want to set logging for a particular profile, use one of the following options instead of the “currentprofile” option: Domainprofile Privateprofile Publicprofile APPLIES TO Windows [...]

Posted in Firewall | No Comments »

WSUS Database cleanup/update using PowerShell

06/07/2009

Using Powershell to cleanup the WSUS database, free disk space increased 12 GB. #Region VARIABLES # WSUS Connection Parameters: # YOUR SERVER NAME [String]$updateServer = "SERVER NAME" [Boolean]$useSecureConnection = $False # Port number [Int32]$portNumber = 8530 # Cleanup Parameters: # Decline updates that have not been approved for 30 days or more, are not currently [...]

Tags: ,
Posted in PowerShell, Windows Server 2008 | No Comments »