<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Networknet.nl &#187; Script</title>
	<atom:link href="http://www.networknet.nl/apps/wp/archives/tag/script/feed" rel="self" type="application/rss+xml" />
	<link>http://www.networknet.nl/apps/wp</link>
	<description>Stay Connected</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:46:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SCCM: how to install Windows Server 2008 R2 prerequisites for SCCM 2007?</title>
		<link>http://www.networknet.nl/apps/wp/archives/2195</link>
		<comments>http://www.networknet.nl/apps/wp/archives/2195#comments</comments>
		<pubDate>Fri, 10 Feb 2012 16:46:09 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[SCCM]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[dism]]></category>
		<category><![CDATA[prerequisites]]></category>
		<category><![CDATA[sccm]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/?p=2195</guid>
		<description><![CDATA[SCCM 2007 server has certain prerequisites before you can start the installation. I am installing SCCM 2007 SP2 server on a Windows Server 2008 R2 virtual machine. This is my second SCCM 2007 server which I am installing for my lab environment. My next installation is final and I want to automate these prerequisites which I will install from a script later. For Windows Server 2008 R2 you can use the dism.exe tool to install the roles and features. What I have done, I used dism /online  /Get-Features /format:table on my first server and copied the data into Excel. I used some smart formatting and functions, so I could generate the command line which I need to run on my new SCCM server. How to install SCCM 2007 roles and features prerequisites on a Windows Server 2008 R2? Run the following line from a command prompt with elevated administrator: dism /online /Enable-Feature /featurename:BITSExtensions-Upload /featurename:IIS-ApplicationDevelopment /featurename:IIS-ASPNET /featurename:IIS-CommonHttpFeatures /featurename:IIS-DefaultDocument /featurename:IIS-DirectoryBrowsing /featurename:IIS-HealthAndDiagnostics /featurename:IIS-HttpCompressionStatic /featurename:IIS-HttpErrors /featurename:IIS-HttpLogging /featurename:IIS-HttpRedirect /featurename:IIS-HttpTracing /featurename:IIS-IIS6ManagementCompatibility /featurename:IIS-ISAPIExtensions /featurename:IIS-ISAPIFilter /featurename:IIS-LoggingLibraries /featurename:IIS-ManagementConsole /featurename:IIS-Metabase /featurename:IIS-NetFxExtensibility /featurename:IIS-Performance     /featurename:IIS-RequestFiltering /featurename:IIS-RequestMonitor /featurename:IIS-Security     /featurename:IIS-StaticContent     /featurename:IIS-WebDAV /featurename:IIS-WebServer /featurename:IIS-WebServerManagementTools /featurename:IIS-WebServerRole /featurename:IIS-WindowsAuthentication /featurename:IIS-WMICompatibility /featurename:Internet-Explorer-Optional-amd64/featurename:LightweightServer /featurename:MSRDC-Infrastructure /featurename:Printing-XPSServices-Features After I run the Configuration Manager 2007 SP2 prerequisite checker I only saw &#8220;Windows Server Update Services (WSUS)&#8221; was missing. This is OK for now as I am not installing Software Update role. One thing not to forget is to enable and configure the IIS WebDAV Authoring rules before you start. For more details on WebDAV Authoring rules please refer to the ...]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/2195/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AppV: how to install prerequisites AppV management server from command line Win2k8 R2?</title>
		<link>http://www.networknet.nl/apps/wp/archives/2066</link>
		<comments>http://www.networknet.nl/apps/wp/archives/2066#comments</comments>
		<pubDate>Fri, 23 Dec 2011 10:43:06 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[AppV]]></category>
		<category><![CDATA[commandline]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/?p=2066</guid>
		<description><![CDATA[When setting up a Microsoft Application Virtualization (AppV) management server you need to prepare your OS with couple of prerequisites (mainly for IIS and SQL server database engine). I am running the AppV manament server on a Windows Server 2008 R2 release. There are several ways to install the IIS features but I am using the dism.exe command. Dism.exe has also the online feature which allows you to modify running system. With following Dism.exe command line I am adding the required IIS components for AppV server. I don&#8217;t need to run the Server Manager on Windows Server 2008 R2 and I can achieve this from command line and script. dism /online /Enable-Feature /featurename:IIS-ApplicationDevelopment /featurename:IIS-ASPNET /featurename:IIS-CommonHttpFeatures /featurename:IIS-DefaultDocument /featurename:IIS-DirectoryBrowsing /featurename:IIS-HealthAndDiagnostics /featurename:IIS-HttpCompressionStatic /featurename:IIS-HttpErrors /featurename:IIS-HttpLogging /featurename:IIS-IIS6ManagementCompatibility /featurename:IIS-ISAPIExtensions /featurename:IIS-ISAPIFilter /featurename:IIS-LegacyScripts /featurename:IIS-LegacySnapIn /featurename:IIS-ManagementConsole /featurename:IIS-ManagementScriptingTools /featurename:IIS-ManagementService /featurename:IIS-Metabase /featurename:IIS-NetFxExtensibility /featurename:IIS-Performance /featurename:IIS-RequestFiltering /featurename:IIS-RequestMonitor /featurename:IIS-Security /featurename:IIS-StaticContent /featurename:IIS-WebServer /featurename:IIS-WebServerManagementTools /featurename:IIS-WebServerRole /featurename:IIS-WindowsAuthentication /featurename:IIS-WMICompatibility Refrences Sysadminsblog.com - Setting up App-V Management Server Augusto Alvarez &#8211; Implementing App-V]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/2066/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Deployment: PDFCreator from pdfforge.org</title>
		<link>http://www.networknet.nl/apps/wp/archives/1085</link>
		<comments>http://www.networknet.nl/apps/wp/archives/1085#comments</comments>
		<pubDate>Mon, 21 Mar 2011 11:11:06 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Software Deployment]]></category>
		<category><![CDATA[pdfcreator]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[software deployment]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=1085</guid>
		<description><![CDATA[Solution Definition PDFCreator is a free tool to create PDF files from nearly every application. To distrbute this PDF Creator I used the following script recipe. Before I started I used the SAVEINF command line parameter to record my setup options. Requirements Download http://www.pdfforge.org/download Script PDFCreator-1_2_0_setup.inf - the setup file provides most defaults but most important setting is Toolbar is set to 0. Otherwise the pdfforge Toolbar will be installed. PDFCreator-1_2_0_setup.cmd - I included the UpdateInterval registry setting for HKEY_CURRENT_USER hive. It is a user setting but with Default User or with GPO preferences you can apply this setting to all users to disable the automatic updates of PDFCreator. References http://www.pdfforge.org/content/setup-command-line-parameters http://www.appdeploy.com/packages/detail.asp?id=2036]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/1085/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Deployment: how to deploy Adobe Flash Player?</title>
		<link>http://www.networknet.nl/apps/wp/archives/1081</link>
		<comments>http://www.networknet.nl/apps/wp/archives/1081#comments</comments>
		<pubDate>Mon, 21 Mar 2011 10:38:56 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Software Deployment]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[auto update]]></category>
		<category><![CDATA[flash player]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[software deployment]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=1081</guid>
		<description><![CDATA[The following recipe helped me to create a enterprise deployment script to distribute Adobe Flash Player. I will be using this script as task sequence with SCCM server. Basically you could use these command lines to run from any software deployment solution. The deployment will target Windows 7 Enterprise clients. Requirements Download the latest MSI version from Adobe&#8217;s website http://www.adobe.com/products/flashplayer/fp_distribution3.html Ensure you applied for the Adobe Flash Player Distribution License Agreement here. Script I used taskkill to stop all Internet Explorer processes. When killing Internet Explorer please inform your users as their sessions will be closed when this script is running. I also renamed the MSI file to make sure I control the version&#8217;s of the Adobe Flash player sources. Updates After installing the latest version of Adobe Flash Player the Automatic Updates setting is set to default meaning every week. Every time a flash file is being opened Flash Player will check the latest version. The automatic updates feature can be disabled from Global Notifications Settings panel which can be accessed from http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.html but this is a user setting. I fix this before by customizing the Default User for the Windows 7 image but sometimes the profile becomes corrupt and Adobe Flash update is shown. The make sure the automatic update is disabled for all users an administrator deployed configuration file can be deployed. For Windows 7 I created a new text file stored in C:\WINDOWS\System32\Macromed\Flash and the file needs to be named mms.cfg. After implementing this file I ...]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/1081/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: clear windows eventviewer logs</title>
		<link>http://www.networknet.nl/apps/wp/archives/1077</link>
		<comments>http://www.networknet.nl/apps/wp/archives/1077#comments</comments>
		<pubDate>Wed, 16 Mar 2011 12:23:03 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[clear]]></category>
		<category><![CDATA[eventlogs]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=1077</guid>
		<description><![CDATA[Solution Definition How to clear Windows Eventlogs from Powershell? That question I had solved with my previous post but now I have ported the script into Powershell. During my Windows 7 development of a WIM image I wanted to clear the logs after the image was restored. I am using several PowerShell scripts and adding this command line helped me to have a clean start of logs. Requirements Make sure you open a PowerShell with Windows 7 elevated privileges Create a ps1 file based on the script below. Script References Windows 7 recipe: clear windows eventviewer logs]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/1077/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2008 R2 : enable wireless networking?</title>
		<link>http://www.networknet.nl/apps/wp/archives/945</link>
		<comments>http://www.networknet.nl/apps/wp/archives/945#comments</comments>
		<pubDate>Sun, 31 Jan 2010 10:10:01 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[dism.exe]]></category>
		<category><![CDATA[enable]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[wirelessnetworking]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/945</guid>
		<description><![CDATA[When installing Windows Server 2008 R2 out of the box the configuration does not&#160; support wireless networking. If&#160; drivers are available Windows will find them with plug and play installation but not enable the functionality. Since Windows 7 and Windows Server 2008 R2 supports booting from a VHD file from local disks I am now building a&#160; standard image which I will use for testing and development. The new VHD boot feature is amazing in helping IT professionals having multiple VHD files which they can boot from. Last night I needed to update my system with all latest patches and system settings therefore I needed to access the Internet without any wired connection. Not connected. No Connections are available after checking my adapters. Microsoft released new tool named DISM.exe (Deployment Image Servicing and Management tool) which ships with Windows 7 and Windows Server 2008 R2. DISM enumerates, installs, uninstalls, configures, and updates features and packages in Windows images. The commands that are available depend on the image being serviced and whether the image is offline or running. Open elevated command prompt and query all available features “dism /online /get-features /format:table” WirelessNetworking is disabled. To enable this feature execute “dism /online /enable-feature:WirelessNetworking” dism enables the WirelessNetworking feature and after I check my available wireless network connections the WIFI networks are not shows.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/945/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PowerShell: How to delete a file based on a list of computers?</title>
		<link>http://www.networknet.nl/apps/wp/archives/943</link>
		<comments>http://www.networknet.nl/apps/wp/archives/943#comments</comments>
		<pubDate>Sun, 31 Jan 2010 09:50:59 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/943</guid>
		<description><![CDATA[The following PowerShell script recipe will help you delete a remote file based on a list of computers stored in a text file. New PowerShell function will be created during the session which will be piped from the text file. Create new file named C:\Scripts\Active_Computers.txt and populate the computer names. function delete-remotefile {     PROCESS {                 $file = "\\$_\c$\install.exe"                 if (test-path $file)                 {                 echo "$_ install.exe exists"                 Remove-Item $file -force                 echo "$_ install.exe file deleted"                 }             } } Get-Content  C:\Scripts\Active_Computers.txt &#124; delete-remotefile That&#8217;s it. &#160;]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/943/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows Server 2003: how to disable Internet Explorer Enhanced Security with script?</title>
		<link>http://www.networknet.nl/apps/wp/archives/874</link>
		<comments>http://www.networknet.nl/apps/wp/archives/874#comments</comments>
		<pubDate>Mon, 26 Oct 2009 13:39:27 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[6.0]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[Enhanced Security]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=874</guid>
		<description><![CDATA[After 6 years of working with Windows Server 2003 I finally made this script to disabe the restricted IE mode. Microsoft already fixed this feature for Windows Server 2008 and it can be easly switched off in Server Manager. For Windows Server 2003 you still need to open appwiz.cpl and run the steps. The warning I was presented over and over. This message make sense but not when I need to update latest firmware, drivers or work on a certificate authority as shown in my example. Create new file named disable &#8220;IE-Security.txt&#8221;. Add following text: [Components] IEHardenUser=Off IEHardenAdmin=Off and save the file. Save the file and run from command line SYSOCMGR.EXE /i:%windir%\inf\sysoc.inf /u:c:\IE-Security.txt This made my server now less secure but my life easier to get this done.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/874/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Outlook: how to backup my signature?</title>
		<link>http://www.networknet.nl/apps/wp/archives/806</link>
		<comments>http://www.networknet.nl/apps/wp/archives/806#comments</comments>
		<pubDate>Fri, 15 May 2009 12:18:01 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[bacjkup]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[signature]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=806</guid>
		<description><![CDATA[One of the things I always struggled with is creating a backup of my Microsoft Outlook signatures. This is the first time I found how to create a backup of them. The solutions is simple and easy. You could script this and automate when doing client/profile migrations. Start &#8211;&#62; Run and go paste this %APPDATA%\Microsoft\Signatures That&#8217;s it. You can copy these files to whatever location you want.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/806/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>JeOS: Installing mutt without an Internet connection</title>
		<link>http://www.networknet.nl/apps/wp/archives/797</link>
		<comments>http://www.networknet.nl/apps/wp/archives/797#comments</comments>
		<pubDate>Mon, 11 May 2009 14:59:34 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[JeOS]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=797</guid>
		<description><![CDATA[I needed to install mutt on my JeOS virtual machine. The system had no Internet connectivity because the machine is sitting behind internal firewall. Mutt is handy little tool for scripting and it allows you attach your files. The files can anything, I will use this tool to email me my mysql database dumps. Download the .deb files: http://packages.ubuntu.com/hardy/i386/mutt/download http://packages.ubuntu.com/hardy/i386/mutt-patched/download Copy the installation files and install them: dpkg -i mutt_1.5.17+20080114-1ubuntu1_i386.deb dpkg -i mutt-patched_1.5.17+20080114-1ubuntu1_i386.deb The following line I scheduled to email me the mysql dump.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/797/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Packaging: Internet Explorer 8</title>
		<link>http://www.networknet.nl/apps/wp/archives/769</link>
		<comments>http://www.networknet.nl/apps/wp/archives/769#comments</comments>
		<pubDate>Wed, 25 Mar 2009 12:43:34 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[IE]]></category>
		<category><![CDATA[commandline]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=769</guid>
		<description><![CDATA[Here is my script and commands I used to install Internet Explorer 8 with a cmd script. I used this script to perform manual installation but it can also be used to deploy the package with software distribution. IE8-WindowsXP-x86-ENU.exe /passive /nobackup /norestart The script will install IE, without user interaction, create no uninstall package and does not reboot the system. If you want to hide the installation window add &#8220;/quiet&#8221; to it. For more information click here.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/769/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Software Deployment: Microsoft Visio Viewer</title>
		<link>http://www.networknet.nl/apps/wp/archives/718</link>
		<comments>http://www.networknet.nl/apps/wp/archives/718#comments</comments>
		<pubDate>Wed, 11 Feb 2009 13:17:34 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software Deployment]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[viewer]]></category>
		<category><![CDATA[visio]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=718</guid>
		<description><![CDATA[In an enterprise environment Microsoft Visio is a common tool to see. The price for a single license is significant so you don&#8217;t want to load this to as default installation on all your clients. Microsoft provides a small viewer for Visio drawings which is integrated with Internet Explorer. I would like to include this add-on to all of my clients. A small script is needed to automatically distribute this. You can use software distribution mechanism you have but preferably SMS/SCCM server from Microsoft. How to silently install Microsoft Visio Viewer? Download the installation file from Microsoft Download Center Create a CMD text file visioviewer.cmd @echo off REM Install Microsoft Visio Viewer 2010 visioviewer.exe /quiet /norestart References Microsoft Download Center &#8211; Visio 2010 Viewer]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/718/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tools: BGInfo silent run and no license agreement</title>
		<link>http://www.networknet.nl/apps/wp/archives/699</link>
		<comments>http://www.networknet.nl/apps/wp/archives/699#comments</comments>
		<pubDate>Tue, 13 Jan 2009 20:29:57 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[BgInfo]]></category>
		<category><![CDATA[agreement]]></category>
		<category><![CDATA[eula]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[skip]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/699</guid>
		<description><![CDATA[BGInfo is very useful when managing dozen of Windows Servers in physical and virtual environments. I even managed to get this tool deployed to all client computers at work. It has a huge value for support personal. Since SysInternals has been taken over by Microsoft it now shows a “License Agreement” windows. Sure this is not a problem on the servers; but for client computers we don’t want to bug users with these windows. What should users do? We have two flavors to solve this: Create a reg file and import the key below Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Sysinternals\BGInfo] &#34;EulaAccepted&#34;=dword:00000001 I prefer the command line below in a cmd cript which is storen All Users\Start Menu\Programs\Startup folder C:\WINDOWS\Bginfo.exe almatis.bgi /timer:0 /silent /NOLICPROMPT /NOCICPROMPT option will skip the license window. Imagine having 1000+ users clicking on the window.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/699/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyper-V from cmd</title>
		<link>http://www.networknet.nl/apps/wp/archives/467</link>
		<comments>http://www.networknet.nl/apps/wp/archives/467#comments</comments>
		<pubDate>Fri, 15 Aug 2008 18:05:09 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/467</guid>
		<description><![CDATA[Hyper-V, a key feature of Windows Server 2008, has now released to manufacturing (RTM) and is available for deployment into production environments. With help of ServerManagerCMD.exe I will install the Hyer-V role. &#160; What is ServerManagerCMD.exe? Server Manager in Windows Server 2008 provides a single source for managing a server&#8217;s identity and system information, displaying server status, identifying problems with server role configuration, and managing all roles installed on the server. ServerManagerCMD is powerful tool and within one command line you can install the Hyper-V role. Make sure you installed the Windows 2008 RTM version and updated your system with KB950050. With ServerManagerCMD.exe you will be able to install all those roles: Active Directory Certificate Services Active Directory Domain Services Active Directory Federation Services Active Directory Lightweight Directory Services Active Directory Rights Management Services Application Server Availability and Scalability DHCP Server DNS Server Fax Server File Services Hyper-V Network Policy and Access Services Print Services Streaming Media Services Terminal Services Troubleshooting UDDI Services Web Server Windows Deployment Services Finally we get a single command line tool for this administrative task. I hate having different text files and run the cmd batch scripts. Related links: Technet &#8211; Server Manager]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/467/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESX: esxcfg-vswitch and special vlan switch</title>
		<link>http://www.networknet.nl/apps/wp/archives/452</link>
		<comments>http://www.networknet.nl/apps/wp/archives/452#comments</comments>
		<pubDate>Thu, 12 Jun 2008 14:56:36 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[ESX]]></category>
		<category><![CDATA[commandline]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[vlan]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/452</guid>
		<description><![CDATA[If you need to create 5 or more of Virtual Port groups on a vSwtich and you don&#8217;t want to use the VI client than logon on the service console and run the commands below. For creating a new Virtual Port Group use: esxcfg-vswitch -A NAME-TO-GIVE vSwitch0 Assigning a special VLAN to this a Virtual Port Group: esxcfg-vswitch -v VLANID -p PORTGROUP vSwitch0 With these two simple commands I was able to push my sh script and create same &#8220;Networking&#8221; configuration on dozen of my ESX servers. [root@ESX-02 root]# esxcfg-vswitch -A VLAN282 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -A VLAN283 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -A VLAN284 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -A VLAN285 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -A VLAN299 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -A VLAN220 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -v 282 -p VLAN282 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -v 283 -p VLAN283 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -v 284 -p VLAN284 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -v 285 -p VLAN285 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -v 299 -p VLAN299 vSwitch0[root@ESX-02 root]# esxcfg-vswitch -v 220 -p VLAN220 vSwitch0 esxcfg-vswitch [options] [vswitch[:ports]] &#160; -a&#124;&#8211;add&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Add a new virtual switch. &#160; -d&#124;&#8211;delete&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Delete the virtual switch. &#160; -l&#124;&#8211;list&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; List all the virtual switches. &#160; -L&#124;&#8211;link=pnic&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set pnic as an uplink for the vswitch. &#160; -U&#124;&#8211;unlink=pnic&#160;&#160;&#160;&#160;&#160; Remove pnic from the uplinks for the vswitch. &#160; -M&#124;&#8211;add-pg-uplink&#160;&#160;&#160; Add an uplink to the list of uplinks for a portgroup &#160; -N&#124;&#8211;del-pg-uplink&#160;&#160;&#160; Delete an uplink from the list of uplinks for a portgroup &#160; -p&#124;&#8211;pg=portgroup&#160;&#160;&#160;&#160; Specify a portgroup for operation &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Use ALL to set VLAN IDs on all portgroups &#160; -v&#124;&#8211;vlan=id&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set vlan ...]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/452/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Active Directory: DCpromo answer file</title>
		<link>http://www.networknet.nl/apps/wp/archives/386</link>
		<comments>http://www.networknet.nl/apps/wp/archives/386#comments</comments>
		<pubDate>Tue, 04 Mar 2008 19:51:53 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Windows Active Directory]]></category>
		<category><![CDATA[answer]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[dcromo]]></category>
		<category><![CDATA[domain controller]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/386</guid>
		<description><![CDATA[The following example demonstrates how to provision an Active Directory domain from an answer file. The installation of domain and domain controller role can be controlled from script and reproduced. This script has been generated for a Windows Server 2003. How to create answer file from DCPromo.exe? Copy the text below and create new text file named ad.txt. [DCInstall] AdministratorPassword =P@SSWORD1 CreateOrJoin = Create DomainNetBiosName = 70-296 NewDomainDNSName = 70-296.net RebootOnSuccess = Yes ReplicaOrNewDomain = Domain SiteName = "Default-First-Site" InstallDNS=yes ConfirmGc=Yes TreeOrChild = Tree UserName=Administrator Password=P@SSWORD1 Change password for the administrator and open a command prompt. Run dcpromo /answer:ad.txt. In my answer file DNS server is installed automatically; make sure the Windows Server source cd-rom is available locally or in a cd drive. After the reboot and I verified the installation of the domain. Active Directory was successfully installed. Using the answer file I am able to reproduce the steps in my lab environment and prepare myself for production deployments. References http://support.microsoft.com/kb/223757/en-us http://www.petri.co.il/unattended_installation_of_active_directory.htm]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/386/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dell PowerEdge CPU check for Intel VT</title>
		<link>http://www.networknet.nl/apps/wp/archives/373</link>
		<comments>http://www.networknet.nl/apps/wp/archives/373#comments</comments>
		<pubDate>Wed, 06 Feb 2008 19:39:40 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Dell]]></category>
		<category><![CDATA[cpuvt]]></category>
		<category><![CDATA[dbs]]></category>
		<category><![CDATA[enable]]></category>
		<category><![CDATA[omconfig]]></category>
		<category><![CDATA[omreport]]></category>
		<category><![CDATA[poweredge]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/373</guid>
		<description><![CDATA[Last year I installed three Dell PowerEdge 1950 1U servers and since than I used them in production as VMWare Server hosts. Couple times when creating and migrating the guest machines I received a warning that my CPU was VT capable but not enabled. To enable this option reboot the Dell server, hit F2 to enter the BIOS and change the Intel VT Virtualization Technology CPU setting. Each month there is a scheduled maintenance and if there is a security update than it will be installed and server reboot, but than I will need to be there and enter the BIOS by console or DRAC console. For that reason I created two scripts to check the CPU bios setting and if required execute the second cmd script to enable the VT option. Please make sure the Dell OpenManage software is installed. The commands available for Windows and ESX operating systems. @echo off REM Ivan Versluis / Ivan1980(at)networknet.nl / Dell PowerEdge Intel VT check omreport chassis biossetup &#38; omreport chassis processors pause &#160; @echo off REM Ivan Versluis / Ivan1980(at)networknet.nl / Dell PowerEdge Intel VT enable omconfig chassis biossetup attribute=cpuvt setting=enabled omconfig chassis biossetup attribute=dbs setting=enable pause For more information check out this document.&#160; The enable script has been executed and I only need to get new security updates for this month. I&#8217;ve seen no security update&#160; information from Microsoft last days and I will need to wait until next WSUS assigned patches will reboot the servers.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/373/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>VMWare Player cmd startup script</title>
		<link>http://www.networknet.nl/apps/wp/archives/356</link>
		<comments>http://www.networknet.nl/apps/wp/archives/356#comments</comments>
		<pubDate>Tue, 29 Jan 2008 20:10:40 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/356</guid>
		<description><![CDATA[Did you ever tried to automate the process of having a script or shortcut to automatically start a virtual guest with VMWare Player? After you login you can start VMWare Player and locate the virtual machine or click the recent one but still you need to control this process. Maybe you want to start the virtual machine at system startup with Scheduled Tasks or instruct a user to click on a specific shortcut for a pre-created virtual machine he needs to test. I created a small script which can used for this process. Create new file in notepad and paste the commands below. Make sure the VMWare Player installation path is correct and the location of your VMWare guest. @Echo off REM VMWare Player cmd script for virtual guest startup REM Ivan Versluis @ Networknet.nl REM Email: Ivan.Versluis@networknet.nl REM Date: 29/01/2008 &#34;C:\Program Files\VMware\VMware Player\vmplayer.exe&#34; &#34;C:\VMWareGuests\Server\Windows Server 2003 Standard Edition.vmx&#34; The result]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/356/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Install Windows Server 2003 DHCP Server Service with Script</title>
		<link>http://www.networknet.nl/apps/wp/archives/339</link>
		<comments>http://www.networknet.nl/apps/wp/archives/339#comments</comments>
		<pubDate>Sat, 19 Jan 2008 14:52:05 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[dhcpserver]]></category>
		<category><![CDATA[NetOptionalComponents]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[sysocmgr]]></category>
		<category><![CDATA[unattended]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/339</guid>
		<description><![CDATA[Running the VMNet8 NAT network in VMWare Workstation does not provide me the granular control how the DHCP server should deal with different DHCP clients and options I want to see in my lab environment. As sysadmin I like to script things and re-use the code next time I will need to it. How to install the DHCP service from script? Create new file named c:\dhcp_server.txt [NetOptionalComponents] DHCPServer =1 Save the file and open a cmd box. Execute sysocmgr /i:%windir%\inf\sysoc.inf /u:c:\dhcp_server.txt   For additional components go to here.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/339/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2008 Domain Join with netdom.exe</title>
		<link>http://www.networknet.nl/apps/wp/archives/23</link>
		<comments>http://www.networknet.nl/apps/wp/archives/23#comments</comments>
		<pubDate>Tue, 16 Oct 2007 18:53:10 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Core Server]]></category>
		<category><![CDATA[Join]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Windows Server 2008 Core]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/23</guid>
		<description><![CDATA[The following command will join the NET-IIS-01 workload into the Networknet.nl forest domain. Enter the Administrator password and after the netdom has finished reboot the server with shutdown.exe /r /t5.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/23/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

