<?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; file</title>
	<atom:link href="http://www.networknet.nl/apps/wp/archives/tag/file/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>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>PowerShell: How to check list of computers for a specific remote file ?</title>
		<link>http://www.networknet.nl/apps/wp/archives/936</link>
		<comments>http://www.networknet.nl/apps/wp/archives/936#comments</comments>
		<pubDate>Sun, 31 Jan 2010 09:34:03 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[test-path]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/936</guid>
		<description><![CDATA[The following PowerShell script recipe will help you check a remote file based on a list of computers stored in a text file. During the session a PowerShell function will be created which will be piped into the text file with computers. In the following PowerShell example I will check if install.exe exists on the remote systems and echo the computername if the file is there. Create new text file named C:\Scripts\Active_Computers.txt and populate the file with computer names. function check-remotefile {     PROCESS {                 $file = "\\$_\c$\install.exe"                 if (test-path $file)                 {                 echo "$_ file install.exe exists"                 }             } } Get-Content  C:\Scripts\Active_Computers.txt &#124; check-remotefile]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/936/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>File server: Windows Server 2003 Access-based Enumeration</title>
		<link>http://www.networknet.nl/apps/wp/archives/774</link>
		<comments>http://www.networknet.nl/apps/wp/archives/774#comments</comments>
		<pubDate>Wed, 25 Mar 2009 13:59:04 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[acess-based]]></category>
		<category><![CDATA[enumeration]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=774</guid>
		<description><![CDATA[If you are managing a Windows Server 2003 file server than this add-on should be installed. Windows Server 2003 Access-based Enumeration makes visible only those files or folders that the user has the rights to access. When Access-based Enumeration is enabled, Windows will not display files or folders that the user does not have the rights to access. This download provides a GUI and a CLI that enables this feature. This is the first time I installed and used this tool myself. Easy to install and no reboot is required of the file server. It cleans the users view and we as system administrators have fewer &#8220;security audits&#8221; in our event viewers. Click here to download the MSI setup files.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/774/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VMware ESX: SSH remote management</title>
		<link>http://www.networknet.nl/apps/wp/archives/472</link>
		<comments>http://www.networknet.nl/apps/wp/archives/472#comments</comments>
		<pubDate>Fri, 12 Sep 2008 17:56:05 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[ESX]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[managment]]></category>
		<category><![CDATA[service console]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/472</guid>
		<description><![CDATA[After installing VMWare ESX 3.5 hypervisor host server I would like to manage this system with SSH remotely. Server is manufactured by Dell and the DRAC mgmt card interface is available but I prefer to use SSH. SSH is enabled by default but disallows access for root. See my work log and screenshots how to enable this feature: Login with root from the console Change directory with &#8220;cd /etc/ssh&#8221; Open sshd_config with &#8220;vi sshd_config&#8221; Locate Authentication section and change &#8220;PermitRootLogin no&#8221; to &#8220;PermitRootLogin yes&#8221;; for going into edit mode type i; press ESC to exit Type &#8220;:wq!&#8221; to save and exit the file Restart the SSH deamon with &#8220;service sshd restart&#8221; Start putty.exe or any of you favorite SSH remote management tools to connect to your ESX 3.5 server. This procedure also applies to version 3.x. With this procedure I achieved to manage my ESX server remotely so I don&#8217;t need to use my remote management access card. SSH daemon also support secure file copy protocol which can be used to connect with WinSCP and download or upload any file/virtual machine to your VMFS file system. Please be aware of any security implications! I enabled this kind of access because the management interface is sitting in a different VLAN than the vSwitch networks within virtual machine which are trunked amongst different networks.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/472/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mount Linux file system on Windows operating systems</title>
		<link>http://www.networknet.nl/apps/wp/archives/464</link>
		<comments>http://www.networknet.nl/apps/wp/archives/464#comments</comments>
		<pubDate>Sun, 03 Aug 2008 16:47:44 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[ext2]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/464</guid>
		<description><![CDATA[Since I am dual booting between Ubuntu and Windows Vista on my desktop workstation I am missing my linux volumes on Vista. I have three large 500GB SATA2 disks and one of them is partitioned and formatted with Ext2 linux file system. I have two options to read my linux volumes from windows: a) Explore2fs which is a simple tool and I don&#8217;t need to install any low level system drivers. Explore2fs only operates in Read-Only mode. b) Ext2IFS which is a pure kernel mode file system driver Ext2fs.sys, which actually extends the Windows NT/2000/XP/Vista (x86/x64) operating system to include the Ext2 file system. I want to have full read-write mode on my linux volumes and I installed option b. Go to http://www.fs-driver.org/download.html and download Ext2IFS_1_11.exe Run the setup file and walk though the installation wizards. In the Drive Letters Wizard choose your linux partition and assign a drive letter. I used drive L: &#160; Drive L:\ is now mounted in READ/Write mode from my Windows Vista SP1 x64 operating system.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/464/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File Server: windows share migration</title>
		<link>http://www.networknet.nl/apps/wp/archives/451</link>
		<comments>http://www.networknet.nl/apps/wp/archives/451#comments</comments>
		<pubDate>Wed, 11 Jun 2008 12:04:13 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Migration]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[lanmanserver]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[shares]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/451</guid>
		<description><![CDATA[You have a Windows File Server and you want to migrate the windows shares. What options do you have to complete this job? A) recreate them or B) migrate them from ServerA to ServerB. Sometimes option A is the only one you have but in most cases you want to keep those Windows Shares available as they were before and using some kind of script would be nice. Microsoft published a KB125996 article based on following procedures and my option B: Reinstall Windows over an existing installation (a clean install, not an upgrade). Move all of your data drives from one server to another. Install Windows to another folder or drive on a computer that already has Windows installed. I am performing a clean installation of a application server which has several file shares associated for application functionality. I don&#8217;t want to recreate them manually and I am using the next steps to complete this task. a) Verify the shares you want to migrate and the drive letter location is the same on both servers. b) Export the Shares key from HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Shares reg export HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Shares LanmanServer.reg c) Make sure the user and group still exist in the domain! When migrating from DomainA to Domain B make sure you recreate all users and groups. Copy LanmanServer.reg to ServerB and import the registry file. reg import LanmanServer.reg net stop server &#38; net start server Reboot the file server and verify the share with &#8220;net share&#8221; command; also check the System Eventlog for ...]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/451/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Failed to lock the file! VMWare virtual disk (vmdk)</title>
		<link>http://www.networknet.nl/apps/wp/archives/396</link>
		<comments>http://www.networknet.nl/apps/wp/archives/396#comments</comments>
		<pubDate>Wed, 12 Mar 2008 16:20:33 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[failed]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[lock]]></category>
		<category><![CDATA[vmdk]]></category>
		<category><![CDATA[workstation]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/396</guid>
		<description><![CDATA[I copied one of my Windows XP virtual machine running on a VMWare Server 1.02 system locally to my workstation. After the files were copied I opened the vmx file with VMWare Workstation 6 and received the following error below after trying to start the virtual machine. The virrtual machine contained one snapshot on the VMWare Server. Locate the virtual machine in Windows Explorer and delete any .lck folders Start the virtual machine. If boot process will fail, try to Map the virtual hard disk to Z:\ for example. I then disconnect the virtual hard disk and tried again. The virtual machine boot without any problem and my snapshot was still valid. Deleting the .lck folder saved me a lot of work.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/396/feed</wfw:commentRss>
		<slash:comments>193</slash:comments>
		</item>
	</channel>
</rss>

