<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;D04DQXg_cSp7ImA9WhRWGUg.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624</id><updated>2012-01-08T06:06:10.649+13:00</updated><category term="OpenSuse 11" /><category term="DVD Playback" /><category term="Kubuntu" /><category term="Video editing" /><category term="Printer Deployment" /><category term="Printers" /><category term="Chrome" /><category term="iPod" /><category term="Linux" /><category term="remote management" /><category term="Zenworks" /><category term="Geek" /><category term="Group Policy Preferences" /><category term="Telecom" /><category term="remote shutdown" /><category term="Windows Errors" /><category term="MSI" /><category term="new case" /><category term="Work painting" /><category term="computers" /><category term="Google" /><category term="Group Policy" /><category term="Codecs" /><category term="Packaging" /><title>Nathan Cook</title><subtitle type="html">Tips for Desktop/SOE Engineers and Network Admins.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://nznathan.blogspot.com/" /><author><name>Nathan Cook</name><uri>https://profiles.google.com/118276233646219294627</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-wJ17xrdUj-A/AAAAAAAAAAI/AAAAAAAAFfc/96pP3bFNpOs/s512-c/photo.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>21</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/NathanCook" /><feedburner:info uri="nathancook" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;C0IFRHo5eSp7ImA9WhdUEE0.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-2502673853958502057</id><published>2011-09-26T14:37:00.003+13:00</published><updated>2011-09-26T14:45:15.421+13:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-26T14:45:15.421+13:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Geek" /><category scheme="http://www.blogger.com/atom/ns#" term="computers" /><category scheme="http://www.blogger.com/atom/ns#" term="remote shutdown" /><category scheme="http://www.blogger.com/atom/ns#" term="remote management" /><category scheme="http://www.blogger.com/atom/ns#" term="Packaging" /><title>Remotely Shutdown and Restart Computers</title><content type="html">&lt;span class="Apple-style-span"  &gt;&lt;blockquote&gt;&lt;/blockquote&gt;Following is a script I wrote to help me manage to remotely shutdown and restart remote computers, It's nice and simple and also allows you to do the shutdown and restart in batches. It also has an option to start a command on a remote computer, this could be anything from installing an application, to starting an application.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  &gt;The script takes advantage of the tools provided by &lt;a href="http://technet.microsoft.com/en-us/sysinternals"&gt;Sysinternals&lt;/a&gt;. I might add more later but for now this does a few things I need.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  &gt;&lt;i&gt;&lt;div&gt;ECHO OFF&lt;/div&gt;&lt;div&gt;C:&lt;/div&gt;&lt;div&gt;CD\&lt;/div&gt;&lt;div&gt;CLS&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;:MENU&lt;/div&gt;&lt;div&gt;CLS&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;ECHO ============= MENU NAME =============&lt;/div&gt;&lt;div&gt;ECHO -------------------------------------&lt;/div&gt;&lt;div&gt;ECHO 1.  Execute Remote Command&lt;/div&gt;&lt;div&gt;ECHO 2.  Execute Remote Shutdown&lt;/div&gt;&lt;div&gt;ECHO 3.  Execute Remote Restart&lt;/div&gt;&lt;div&gt;ECHO 4.  Execute Batch Remote Shutdown&lt;/div&gt;&lt;div&gt;ECHO 5.  Execute Batch Remote Restart&lt;/div&gt;&lt;div&gt;ECHO -------------------------------------&lt;/div&gt;&lt;div&gt;ECHO ==========PRESS 'Q' TO QUIT==========&lt;/div&gt;&lt;div&gt;ECHO.&lt;/div&gt;&lt;div&gt;SET INPUT=&lt;/div&gt;&lt;div&gt;SET /P INPUT=Please select a number:&lt;/div&gt;&lt;div&gt;IF /I '%INPUT%'=='1' GOTO Selection1&lt;/div&gt;&lt;div&gt;IF /I '%INPUT%'=='2' GOTO Selection2&lt;/div&gt;&lt;div&gt;IF /I '%INPUT%'=='3' GOTO Selection3&lt;/div&gt;&lt;div&gt;IF /I '%INPUT%'=='4' GOTO Selection4&lt;/div&gt;&lt;div&gt;IF /I '%INPUT%'=='5' GOTO Selection5&lt;/div&gt;&lt;div&gt;IF /I '%INPUT%'=='Q' GOTO Quit&lt;/div&gt;&lt;div&gt;CLS&lt;/div&gt;&lt;div&gt;ECHO ============INVALID INPUT============&lt;/div&gt;&lt;div&gt;ECHO -------------------------------------&lt;/div&gt;&lt;div&gt;ECHO Please select a number from the Main&lt;/div&gt;&lt;div&gt;echo Menu [1-5] or select 'Q' to quit.&lt;/div&gt;&lt;div&gt;ECHO -------------------------------------&lt;/div&gt;&lt;div&gt;ECHO ======PRESS ANY KEY TO CONTINUE======&lt;/div&gt;&lt;div&gt;PAUSE &amp;gt; NUL&lt;/div&gt;&lt;div&gt;GOTO MENU&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;:Selection1&lt;/div&gt;&lt;div&gt;@echo off&lt;/div&gt;&lt;div&gt;echo "enter username"&lt;/div&gt;&lt;div&gt;set /p username=&lt;/div&gt;&lt;div&gt;echo "enter password"&lt;/div&gt;&lt;div&gt;set /p password=&lt;/div&gt;&lt;div&gt;echo "enter machine"&lt;/div&gt;&lt;div&gt;set /p machine=&lt;/div&gt;&lt;div&gt;echo "enter command to run"&lt;/div&gt;&lt;div&gt;set /p run=&lt;/div&gt;&lt;div&gt;%0\..\psexec.exe -u %username% -p %password% \\%machine% "%run%"&lt;/div&gt;&lt;div&gt;PAUSE &amp;gt; NUL&lt;/div&gt;&lt;div&gt;GOTO MENU&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;:Selection2&lt;/div&gt;&lt;div&gt;@echo off&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;echo "enter username"&lt;/div&gt;&lt;div&gt;set /p username=&lt;/div&gt;&lt;div&gt;echo "enter password"&lt;/div&gt;&lt;div&gt;set /p password=&lt;/div&gt;&lt;div&gt;echo "enter machine"&lt;/div&gt;&lt;div&gt;set /p machine=&lt;/div&gt;&lt;div&gt;%0\..\psshutdown.exe -f -u %username% -p %password% \\%machine%&lt;/div&gt;&lt;div&gt;PAUSE &amp;gt; NUL&lt;/div&gt;&lt;div&gt;GOTO MENU&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;:Selection3&lt;/div&gt;&lt;div&gt;@echo off&lt;/div&gt;&lt;div&gt;echo "enter username"&lt;/div&gt;&lt;div&gt;set /p username=&lt;/div&gt;&lt;div&gt;echo "enter password"&lt;/div&gt;&lt;div&gt;set /p password=&lt;/div&gt;&lt;div&gt;echo "enter machine"&lt;/div&gt;&lt;div&gt;set /p machine=&lt;/div&gt;&lt;div&gt;%0\..\psshutdown.exe -f -r -u %username% -p %password% \\%machine%&lt;/div&gt;&lt;div&gt;PAUSE &amp;gt; NUL&lt;/div&gt;&lt;div&gt;GOTO MENU&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;:Selection4&lt;/div&gt;&lt;div&gt;@echo off&lt;/div&gt;&lt;div&gt;echo "enter username"&lt;/div&gt;&lt;div&gt;set /p username=&lt;/div&gt;&lt;div&gt;echo "enter password"&lt;/div&gt;&lt;div&gt;set /p password=&lt;/div&gt;&lt;div&gt;echo "enter path to txt file containing computers to shutdown"&lt;/div&gt;&lt;div&gt;set /p file=&lt;/div&gt;&lt;div&gt;%0\..\psshutdown.exe -f -u %username% -p %password% @"%file%"&lt;/div&gt;&lt;div&gt;PAUSE &amp;gt; NUL&lt;/div&gt;&lt;div&gt;GOTO MENU&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;:Selection5&lt;/div&gt;&lt;div&gt;@echo off&lt;/div&gt;&lt;div&gt;echo "enter username"&lt;/div&gt;&lt;div&gt;set /p username=&lt;/div&gt;&lt;div&gt;echo "enter password"&lt;/div&gt;&lt;div&gt;set /p password=&lt;/div&gt;&lt;div&gt;echo "enter path to txt file containing computers to shutdown"&lt;/div&gt;&lt;div&gt;set /p file=&lt;/div&gt;&lt;div&gt;%0\..\psshutdown.exe -f -r -u %username% -p %password% @"%file%"&lt;/div&gt;&lt;div&gt;PAUSE &amp;gt; NUL&lt;/div&gt;&lt;div&gt;GOTO MENU&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;:Quit&lt;/div&gt;&lt;div&gt;CLS&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;ECHO ==============THANKYOU===============&lt;/div&gt;&lt;div&gt;ECHO -------------------------------------&lt;/div&gt;&lt;div&gt;ECHO ======PRESS ANY KEY TO CONTINUE======&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;PAUSE&amp;gt;NUL&lt;/div&gt;&lt;div&gt;EXIT&lt;/div&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" &gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-2502673853958502057?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/L9MVBNzLzx-c8QmPeTpbMT2JOBQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/L9MVBNzLzx-c8QmPeTpbMT2JOBQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/L9MVBNzLzx-c8QmPeTpbMT2JOBQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/L9MVBNzLzx-c8QmPeTpbMT2JOBQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/WD3TR9WoC5w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/2502673853958502057/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=2502673853958502057" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/2502673853958502057?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/2502673853958502057?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/WD3TR9WoC5w/remotely-shutdown-and-restart-computers.html" title="Remotely Shutdown and Restart Computers" /><author><name>Nathan Cook</name><uri>https://profiles.google.com/118276233646219294627</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-wJ17xrdUj-A/AAAAAAAAAAI/AAAAAAAAFfc/96pP3bFNpOs/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2011/09/remotely-shutdown-and-restart-computers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkAHQHc8cSp7ImA9Wx9XFkw.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-440469858500838953</id><published>2011-01-10T13:18:00.000+13:00</published><updated>2011-01-10T13:18:51.979+13:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-01-10T13:18:51.979+13:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Zenworks" /><category scheme="http://www.blogger.com/atom/ns#" term="computers" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Errors" /><title>Error 1327 Invalid H:\ Drive</title><content type="html">&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Seen this error a few times on software that gets deployed via tools that leverage the system account. Always seems to be Adobe products that I see.&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;The fix that works when the install is run as a System Account is as follows.&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;1. Go here: HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Or here:&amp;nbsp;HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;2. Delete anything that references an H:\ drive&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;3. Re-Run your install&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;If it happens for the logged in user then change the above keys to&amp;nbsp;HKEY_CURRENT_USER and make sure the paths referenced are valid - most users will have H drives etc.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-440469858500838953?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/f7q89cF4ROBMmxajJO4E9d0nmD0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f7q89cF4ROBMmxajJO4E9d0nmD0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/f7q89cF4ROBMmxajJO4E9d0nmD0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f7q89cF4ROBMmxajJO4E9d0nmD0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/3cyrceEagfU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/440469858500838953/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=440469858500838953" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/440469858500838953?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/440469858500838953?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/3cyrceEagfU/error-1327-invalid-h-drive.html" title="Error 1327 Invalid H:\ Drive" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2011/01/error-1327-invalid-h-drive.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MEQnk-fyp7ImA9Wx5aFU0.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-8407917226419885959</id><published>2010-11-12T10:03:00.000+13:00</published><updated>2010-11-12T10:03:23.757+13:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-11-12T10:03:23.757+13:00</app:edited><title>Create Briefcase with a Quick Launch icon</title><content type="html">&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;I decided to look into creating a Windows Briefcase icon for a bunch of users, now the problem was that the users are locked down, no access to the desktop, no write access to just about anywhere. They can however create quick launch icons...&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;So in comes AutoIt.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Here's the code:&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;blockquote style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;;Create My Briefcase at root of users profile = C:\Documents and Settings\%username%\My Briefcase"&lt;br /&gt;
$sPath = @UserProfileDir &amp;amp; "\My Briefcase"&lt;br /&gt;
RunWait("rundll32.exe " &amp;amp; @SystemDir &amp;amp; "\syncui.dll,Briefcase_Create 262442 " &amp;amp; $sPath, @SystemDir)&lt;br /&gt;
&lt;br /&gt;
;Create Quick Launch shortcuts in user space only.&lt;br /&gt;
$userQuickLaunchPath = @AppDataDir &amp;amp; "\Microsoft\Internet Explorer\Quick Launch"&lt;br /&gt;
$shortcutTarget = @UserProfileDir &amp;amp; "\My Briefcase"&lt;br /&gt;
FileCreateshortcut($shortcutTarget, $userQuickLaunchPath &amp;amp; "\My Briefcase.lnk")&lt;/span&gt;&lt;/blockquote&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Job done :) &lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-8407917226419885959?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/yiulHdCbs7_w2p7xDCmaCBardpw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yiulHdCbs7_w2p7xDCmaCBardpw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/yiulHdCbs7_w2p7xDCmaCBardpw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yiulHdCbs7_w2p7xDCmaCBardpw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/QDCMYIMPHu4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/8407917226419885959/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=8407917226419885959" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/8407917226419885959?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/8407917226419885959?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/QDCMYIMPHu4/create-briefcase-with-quick-launch-icon.html" title="Create Briefcase with a Quick Launch icon" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/11/create-briefcase-with-quick-launch-icon.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE8BRH46fSp7ImA9Wx9XFkw.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-2009361788445971577</id><published>2010-11-04T09:22:00.001+13:00</published><updated>2011-01-10T11:40:55.015+13:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-01-10T11:40:55.015+13:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MSI" /><category scheme="http://www.blogger.com/atom/ns#" term="Chrome" /><category scheme="http://www.blogger.com/atom/ns#" term="Google" /><category scheme="http://www.blogger.com/atom/ns#" term="Packaging" /><title>Found the Google Chrome MSI</title><content type="html">&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;s&gt;Looks like Google has released a standalone MSI for Chrome, nice one!!&lt;/s&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;/div&gt;&lt;s&gt;&lt;br style="font-family: Verdana,sans-serif;" /&gt;&lt;/s&gt;&lt;br /&gt;
&lt;s&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;Download from &lt;/span&gt;&lt;a href="http://www.google.com/chrome/eula.html?msi=true" style="font-family: Verdana,sans-serif;"&gt;here&lt;/a&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;.&lt;/span&gt;&lt;/s&gt;&lt;br /&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Looks like Google have released an MSI for Chrome and the ADM and ADMX files for configuration. Available &lt;a href="http://www.google.com/apps/intl/en/business/chromebrowser.html"&gt;here&lt;/a&gt;.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-2009361788445971577?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_l_ERs4Yt4_u2gi3ALMnopnmgpM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_l_ERs4Yt4_u2gi3ALMnopnmgpM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_l_ERs4Yt4_u2gi3ALMnopnmgpM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_l_ERs4Yt4_u2gi3ALMnopnmgpM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/Q2r-Cz9NPQk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/2009361788445971577/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=2009361788445971577" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/2009361788445971577?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/2009361788445971577?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/Q2r-Cz9NPQk/found-google-chrome-msi.html" title="Found the Google Chrome MSI" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/11/found-google-chrome-msi.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8ERXkycSp7ImA9Wx5VEkQ.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-7375175412486226233</id><published>2010-10-06T05:40:00.000+13:00</published><updated>2010-10-06T05:40:04.799+13:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-06T05:40:04.799+13:00</app:edited><title>System recovery tool</title><content type="html">Found this great tool for rescuing a Windows or Linux system.&lt;br /&gt;
&lt;br /&gt;
Here's the link:&lt;br /&gt;
http://trinityhome.org&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-7375175412486226233?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/pidN0pdYXFp87_lhKl3cK_EgyCk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pidN0pdYXFp87_lhKl3cK_EgyCk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/pidN0pdYXFp87_lhKl3cK_EgyCk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pidN0pdYXFp87_lhKl3cK_EgyCk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/RMPchENrOgU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/7375175412486226233/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=7375175412486226233" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/7375175412486226233?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/7375175412486226233?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/RMPchENrOgU/system-recovery-tool.html" title="System recovery tool" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/10/system-recovery-tool.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MASXo8fyp7ImA9Wx5XFEw.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-5840597010466651261</id><published>2010-09-14T08:57:00.001+12:00</published><updated>2010-09-14T08:57:28.477+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-14T08:57:28.477+12:00</app:edited><title>ZENworks Deployment and Discovery tasks pending indefinitely</title><content type="html">&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;I had an issue with a Deployment Task that just sat at pending for over 12 hours.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Restarting the ZENloader service on all primary servers got the deployment tasks running again.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;The issue seems to have appeared after a restart of the SQL server for the ZCM implementation as that is the only thing that changed.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-5840597010466651261?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/PU8Gx6NuxRxw5r3Gn3klOw4K54c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PU8Gx6NuxRxw5r3Gn3klOw4K54c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/PU8Gx6NuxRxw5r3Gn3klOw4K54c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PU8Gx6NuxRxw5r3Gn3klOw4K54c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/x6912hYsoyQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/5840597010466651261/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=5840597010466651261" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/5840597010466651261?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/5840597010466651261?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/x6912hYsoyQ/zenworks-deployment-and-discovery-tasks.html" title="ZENworks Deployment and Discovery tasks pending indefinitely" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/09/zenworks-deployment-and-discovery-tasks.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEEDRXg-cSp7ImA9Wx5aFU8.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-877106255493659111</id><published>2010-08-30T13:23:00.001+12:00</published><updated>2010-11-12T13:44:34.659+13:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-11-12T13:44:34.659+13:00</app:edited><title>Deploying Adobe Products</title><content type="html">&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Getting Adobe products deployed in a corporate environment can always be a little tricky. Adobe now (for a little while at least) provides a tool for repackaging up their products, available &lt;/span&gt;&lt;a href="http://www.adobe.com/devnet/creativesuite/enterprisedeployment.html"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;here&lt;/span&gt;&lt;/a&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;.&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Now all they need to do is work on getting the file size down, 4.7GB for their Design Suite Premium CS5 is just a bit large I think :)&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-877106255493659111?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/3h_CRLlZAMbPze9GGvBtMrIguGw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3h_CRLlZAMbPze9GGvBtMrIguGw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/3h_CRLlZAMbPze9GGvBtMrIguGw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3h_CRLlZAMbPze9GGvBtMrIguGw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/dNezrUWvsVo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/877106255493659111/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=877106255493659111" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/877106255493659111?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/877106255493659111?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/dNezrUWvsVo/deploying-adobe-products.html" title="Deploying Adobe Products" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/08/deploying-adobe-products.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQGSXw6eyp7ImA9Wx5RGUU.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-1694755246252388175</id><published>2010-08-28T20:32:00.000+12:00</published><updated>2010-08-28T20:32:08.213+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-28T20:32:08.213+12:00</app:edited><title>ZCM Imaging for Windows XP</title><content type="html">&lt;div style="font-family: Verdana,sans-serif;"&gt;Here's how I have setup my ZENworks system for imaging new and existing devices.&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;Every site has at least a satellite server acting as an Imaging Server, these sites may be&amp;nbsp;separated&amp;nbsp;by different subnets. The imaging server can be any ZENworks Managed device, just as long as it's turned on...&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;In the settings text I have placed the IP address of the imaging server.&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;All devices receive a base Windows XP image which I sysprep - we use UIU for this as it includes all drivers required and more often than not we don't have to rebuild the image every time a new chipset is released, this base image is followed by&amp;nbsp;add on&amp;nbsp;ZMG image files which include additional software depending upon laptop models or PC models.&lt;br /&gt;
&lt;br /&gt;
The image script is as follows, this is included in the tools.zmg file.&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;blockquote&gt;&lt;blockquote&gt;@echo off&lt;/blockquote&gt;&lt;blockquote&gt;REM******************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * MAINRUN.CMD&lt;/blockquote&gt;&lt;blockquote&gt;REM******************************************&lt;/blockquote&gt;&lt;blockquote&gt;rem * Phase 1: Set Environment, Install Machine Specific Applications&lt;/blockquote&gt;&lt;blockquote&gt;REM * Phase 2: Install ZCM Agent&lt;/blockquote&gt;&lt;blockquote&gt;REM * Phase 3: Add Workstation to Domain&lt;/blockquote&gt;&lt;blockquote&gt;REM * Phase 4: Installing Core Applications&lt;/blockquote&gt;&lt;blockquote&gt;REM * Phase 5: Cleanup&lt;/blockquote&gt;&lt;blockquote&gt;REM******************************************&lt;/blockquote&gt;&lt;blockquote&gt;set build=ZCMBUILD&lt;/blockquote&gt;&lt;blockquote&gt;set source=%SystemRoot%\tools&lt;/blockquote&gt;&lt;blockquote&gt;if exist %source%\5.flg goto _end&lt;/blockquote&gt;&lt;blockquote&gt;if exist %source%\4.flg goto _phase5&lt;/blockquote&gt;&lt;blockquote&gt;if exist %source%\3.flg goto _phase4&lt;/blockquote&gt;&lt;blockquote&gt;if exist %source%\2.flg goto _phase3&lt;/blockquote&gt;&lt;blockquote&gt;if exist %source%\1.flg goto _phase2&lt;/blockquote&gt;&lt;blockquote&gt;REM******************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * Phase 1: Set Environment &amp;amp; Install Device Drivers, Add Hardware info to registry&lt;/blockquote&gt;&lt;blockquote&gt;REM******************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_phase1&lt;/blockquote&gt;&lt;blockquote&gt;set phase=1&lt;/blockquote&gt;&lt;blockquote&gt;title Phase 1 of 4: Set Environment and Install Machine Specific Applications&lt;/blockquote&gt;&lt;blockquote&gt;echo &amp;gt; %source%\1.flg&lt;/blockquote&gt;&lt;blockquote&gt;REM ---&amp;gt; default environment&lt;/blockquote&gt;&lt;blockquote&gt;echo Setting default environment &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;start /wait /min %source%\setx.exe TEMP "%SystemRoot%\Temp" -m&lt;/blockquote&gt;&lt;blockquote&gt;start /wait /min %source%\setx.exe TMP "%SystemRoot%\Temp" -m&lt;/blockquote&gt;&lt;blockquote&gt;start /wait /min %SystemRoot%\regedit /s %source%\mainrun.reg&lt;/blockquote&gt;&lt;blockquote&gt;start /wait /min %SystemRoot%\regedit /s %source%\DisableNICPowerSave.reg&lt;/blockquote&gt;&lt;blockquote&gt;start /wait /min %SystemRoot%\regedit /s %source%\rebootprompt.reg&lt;/blockquote&gt;&lt;blockquote&gt;"%windir%\system32\wscript.exe" "%source%\hwrvw.vbs" /b /nologo&lt;/blockquote&gt;&lt;blockquote&gt;start /wait %source%\machine-specific.cmd&lt;/blockquote&gt;&lt;blockquote&gt;echo Zen script for ZCMBUILD started &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;echo phase 1 started &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;%source%\sleep 10&lt;/blockquote&gt;&lt;blockquote&gt;echo phase 1 finished &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;echo. &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;goto _reboot&lt;/blockquote&gt;&lt;blockquote&gt;goto _end&lt;/blockquote&gt;&lt;blockquote&gt;REM *************************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * Phase 2: Install ZCM Agent&lt;/blockquote&gt;&lt;blockquote&gt;REM**********************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_phase2&lt;/blockquote&gt;&lt;blockquote&gt;set phase=2&lt;/blockquote&gt;&lt;blockquote&gt;title Phase 2 of 5: Install ZCM Agent&lt;/blockquote&gt;&lt;blockquote&gt;echo &amp;gt; %source%\2.flg&lt;/blockquote&gt;&lt;blockquote&gt;echo Zen script for ZCMBUILD started &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;echo phase 2 started &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;REM * Installing ZCM Agent and registering to specified office with automatic restart.&lt;/blockquote&gt;&lt;blockquote&gt;start /wait %source%\PreAgentPkg_AgentComplete.exe -q -k WLG&lt;/blockquote&gt;&lt;blockquote&gt;%source%\sleep 10&lt;/blockquote&gt;&lt;blockquote&gt;echo phase 2 finished &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;echo. &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;goto _end&lt;/blockquote&gt;&lt;blockquote&gt;REM ************************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * Phase 3: Add Workstation to Domain (NETDOM)&lt;/blockquote&gt;&lt;blockquote&gt;REM*********************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_phase3&lt;/blockquote&gt;&lt;blockquote&gt;set phase=3&lt;/blockquote&gt;&lt;blockquote&gt;title Phase 3 of 5: Add Workstation to Domain&lt;/blockquote&gt;&lt;blockquote&gt;echo phase 3 started &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;time /t &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;echo Joining the Domain... &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;start /wait %source%\sleep 10&lt;/blockquote&gt;&lt;blockquote&gt;%source%\netdom.exe add /d:**your domain name goes here** %computername% /ud:**username** /pd:**password**&lt;/blockquote&gt;&lt;blockquote&gt;start /wait %source%\sleep 10&lt;/blockquote&gt;&lt;blockquote&gt;%source%\netdom.exe join /d:wan.net.nz %computername% /ud:**username** /pd:**password**&lt;/blockquote&gt;&lt;blockquote&gt;REM --&amp;gt; Add ZCMBUILD account as local admin for install of apps&lt;/blockquote&gt;&lt;blockquote&gt;net localgroup Administrators "domain\**username**" /add&lt;/blockquote&gt;&lt;blockquote&gt;@echo Setting AutoAdminLogin Domain&lt;/blockquote&gt;&lt;blockquote&gt;start /wait /min %SystemRoot%\regedit /s %source%\logonall.reg&lt;/blockquote&gt;&lt;blockquote&gt;echo &amp;gt; %source%\3.flg&lt;/blockquote&gt;&lt;blockquote&gt;echo phase 3 finished &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;time /t &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;echo. &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;goto _reboot&lt;/blockquote&gt;&lt;blockquote&gt;goto _end&lt;/blockquote&gt;&lt;blockquote&gt;REM ************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * Phase 4: Install Core Applications&lt;/blockquote&gt;&lt;blockquote&gt;REM ************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_phase4&lt;/blockquote&gt;&lt;blockquote&gt;set phase=4&lt;/blockquote&gt;&lt;blockquote&gt;title Phase 4 of 5: Installing Core Applications&lt;/blockquote&gt;&lt;blockquote&gt;echo phase 4 started &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;time /t &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;@echo off&lt;/blockquote&gt;&lt;blockquote&gt;Setting Auto ZCMBuild login&lt;/blockquote&gt;&lt;blockquote&gt;%SystemRoot%\regedit /s %source%\logonall.reg&lt;/blockquote&gt;&lt;blockquote&gt;Echo Installing Core Applications... Please be patient!&lt;/blockquote&gt;&lt;blockquote&gt;Echo deploying applications through ZEN Window. This could take a while... &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;echo &amp;gt; %source%\4.flg&lt;/blockquote&gt;&lt;blockquote&gt;%source%\sleep 300&lt;/blockquote&gt;&lt;blockquote&gt;goto _end&lt;/blockquote&gt;&lt;blockquote&gt;REM*********************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * Phase 5: Cleanup&lt;/blockquote&gt;&lt;blockquote&gt;REM ********************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_phase5&lt;/blockquote&gt;&lt;blockquote&gt;set phase=5&lt;/blockquote&gt;&lt;blockquote&gt;title Phase 5 of 5: Cleanup&lt;/blockquote&gt;&lt;blockquote&gt;echo phase 5 finished &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;@echo off&lt;/blockquote&gt;&lt;blockquote&gt;time /t &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;echo &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;echo phase 5 started &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;@echo off&lt;/blockquote&gt;&lt;blockquote&gt;time /t &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;@echo off&lt;/blockquote&gt;&lt;blockquote&gt;start /wait %SystemRoot%\regedit.exe /s %source%\logon!.reg&lt;/blockquote&gt;&lt;blockquote&gt;@echo off&lt;/blockquote&gt;&lt;blockquote&gt;copy %source%\cleanup.cmd %systemroot%\cleanup.cmd /Y&lt;/blockquote&gt;&lt;blockquote&gt;echo Cleaning up... &amp;gt;&amp;gt; c:\zenlog.txt&lt;/blockquote&gt;&lt;blockquote&gt;@echo off&lt;/blockquote&gt;&lt;blockquote&gt;start /wait %systemroot%\cleanup.cmd&lt;/blockquote&gt;&lt;blockquote&gt;goto _end&lt;/blockquote&gt;&lt;blockquote&gt;REM *******************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * Logout&lt;/blockquote&gt;&lt;blockquote&gt;REM********************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_logout&lt;/blockquote&gt;&lt;blockquote&gt;echo Logging out, please wait...&lt;/blockquote&gt;&lt;blockquote&gt;%source%\ncshtdwn /1&lt;/blockquote&gt;&lt;blockquote&gt;goto _end&lt;/blockquote&gt;&lt;blockquote&gt;REM********************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * Restart&lt;/blockquote&gt;&lt;blockquote&gt;REM********************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_reboot&lt;/blockquote&gt;&lt;blockquote&gt;echo Restarting, please wait...&lt;/blockquote&gt;&lt;blockquote&gt;%source%\ncshtdwn /5&lt;/blockquote&gt;&lt;blockquote&gt;goto _end&lt;/blockquote&gt;&lt;blockquote&gt;REM********************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * The End&lt;/blockquote&gt;&lt;blockquote&gt;REM ********************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_end&lt;/blockquote&gt;&lt;blockquote&gt;exit&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;The cleanup.cmd file is as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&lt;blockquote&gt;@echo off&lt;/blockquote&gt;&lt;blockquote&gt;REM*******************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM* CLEANUP.CMD&lt;/blockquote&gt;&lt;blockquote&gt;REM*******************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM* Removes installation files&lt;/blockquote&gt;&lt;blockquote&gt;REM*******************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_main&lt;/blockquote&gt;&lt;blockquote&gt;set source=%SystemRoot%\tools\&lt;/blockquote&gt;&lt;blockquote&gt;net localgroup Administrators "domain\domainuser" /delete&lt;/blockquote&gt;&lt;blockquote&gt;start /wait c:\windows\regedit.exe /s %source%\cleanup!.reg&lt;/blockquote&gt;&lt;blockquote&gt;%source%\sleep 20&lt;/blockquote&gt;&lt;blockquote&gt;rmdir /s /q c:\windows\tools&lt;/blockquote&gt;&lt;blockquote&gt;shutdown -r -t 5&lt;/blockquote&gt;&lt;blockquote&gt;REM *********************************************&lt;/blockquote&gt;&lt;blockquote&gt;REM * The End&lt;/blockquote&gt;&lt;blockquote&gt;REM**********************************************&lt;/blockquote&gt;&lt;blockquote&gt;:_end&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;br /&gt;
The machine-specific command installs all the software for different laptop models.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;This folder has all the scripts, regkeys, ZCM agent etc that I install with the batch script.&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
The command that installs the ZCM agent is different for each regional office so that the device can be registered into the correct folder for office and given some basic&amp;nbsp;asset&amp;nbsp;management information.&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;ZCM agent: c:\program files\novell\zenworks\cache etc.&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;The script that runs all the imaging commands is as follows, there are alot more you can do with it but the following will be enough to get you up and running:&lt;br /&gt;
&lt;blockquote&gt;&lt;blockquote&gt;# Single image script for all computers&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;#!/bin/bash -x&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# If this is a new computer ask for a computer name&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ -n "$(zisview ComputerName)" ]; then&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;WSNAME=$(zisview ComputerName)&lt;/blockquote&gt;&lt;blockquote&gt;else&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;echo &amp;nbsp;"No image safe data found. Assumed to be a new workstation"&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;while test ! $WSNAME; do&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;echo -n "Please enter the workstation name : "&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;read WSNAME&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if [ ${#WSNAME} -gt 15 ] ; then&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;WSNAME=""&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;echo "Workstation names must be 15 characters or less."&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;zisedit -c&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;fi&lt;/blockquote&gt;&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;done&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# Standard Workstation Image - M55 etc&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;img -pd all&lt;/blockquote&gt;&lt;blockquote&gt;img -pc 1 -t=ntfs&lt;/blockquote&gt;&lt;blockquote&gt;img -pa 1&lt;/blockquote&gt;&lt;blockquote&gt;img -rp base-winxp.zmg -ap=a1:p1&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;#Tools package&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;img -rp WAN-Tools.zmg&lt;/blockquote&gt;&lt;blockquote&gt;img -rp NO-Mainrun.zmg&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;#Standard PC Intel Drivers&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;img -rp PC-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# Lenovo M55&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "880894M"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp M55-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# ZCM Agent directory structure&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;img -rp Agent-File-Structure.zmg&lt;/blockquote&gt;&lt;blockquote&gt;#VMware Virtual Machines&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "VMware Virtual Platform"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp VMWare-Tools.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# Toshiba M5&amp;nbsp;&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "TECRA M5"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp M5-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# Toshiba M9&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "TECRA M9"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp M9-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# Toshiba M10&amp;nbsp;&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "TECRA M10"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp M10-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# Toshiba R500&amp;nbsp;&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "PORTEGE R500"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp R500-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# Toshiba R600&amp;nbsp;&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "PORTEGE R600"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp R600-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;# Toshiba A600&amp;nbsp;&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "PORTEGE A600"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp A600-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;#Toshiba M11&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "TECRA M11"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp M11-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;#Toshiba R700 #1&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "PT311A-00J00Q"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp R700-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;#Toshiba R700 #2&lt;/blockquote&gt;&lt;blockquote&gt;#&lt;/blockquote&gt;&lt;blockquote&gt;if [ `hwinfo --bios|grep -c -i "PT310A-066011"` != 0 ]&lt;/blockquote&gt;&lt;blockquote&gt;then&lt;/blockquote&gt;&lt;blockquote&gt;img -rp R700-V2-Apps.zmg&lt;/blockquote&gt;&lt;blockquote&gt;fi&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;# Reset the name to either the chosen or previous&lt;/blockquote&gt;&lt;blockquote&gt;zisedit ComputerName=$WSNAME&lt;/blockquote&gt;&lt;blockquote&gt;reboot -f&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
To get the hardware information used in the script boot into the zenworks imaging maintenance menu and run the following&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;hwinfo --bios | grep 'Product'&amp;nbsp;&lt;/blockquote&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-1694755246252388175?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9MAbfIpxUaCRnaID_yb_E27UPz0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9MAbfIpxUaCRnaID_yb_E27UPz0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9MAbfIpxUaCRnaID_yb_E27UPz0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9MAbfIpxUaCRnaID_yb_E27UPz0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/EKrAJWjss78" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/1694755246252388175/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=1694755246252388175" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/1694755246252388175?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/1694755246252388175?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/EKrAJWjss78/zcm-imaging-for-windows-xp.html" title="ZCM Imaging for Windows XP" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/08/zcm-imaging-for-windows-xp.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkMERHs5fip7ImA9Wx5SFUs.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-4154332882938206217</id><published>2010-07-29T17:07:00.001+12:00</published><updated>2010-08-12T11:13:25.526+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-12T11:13:25.526+12:00</app:edited><title>Adding a new NIC driver to ZENworks Imaging</title><content type="html">&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Open up your&amp;nbsp;z_auto.cfg and&amp;nbsp;z_maint.cfg files located in the following path:&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;%zenworks_home%\share\tftp\&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Add the following to the end of the last line in each file:&lt;/span&gt;&lt;br /&gt;
&lt;blockquote&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;newid="0x8086 0x1049,e1000e"&lt;/span&gt;&lt;/blockquote&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;So it looks like this:&lt;/span&gt;&lt;br /&gt;
&lt;blockquote&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;append 5 initrd=boot\initrd mode=5 rootimage=/root install=tftp://$PXESERVER/boot splash=silent vga=0x314 tftptimeout=50 $KERNEL_PARMS newid="0x8086 0x1049,e1000e"&lt;/span&gt;&lt;/blockquote&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;You can get the new id info by running up your boot disk and typing the following at the bash prompt:&lt;/span&gt;&lt;br /&gt;
&lt;blockquote&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;hwinfo --netcard | more&lt;/span&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-4154332882938206217?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/f64cZddUjcOL-RSVkini1LkfUc4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f64cZddUjcOL-RSVkini1LkfUc4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/f64cZddUjcOL-RSVkini1LkfUc4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f64cZddUjcOL-RSVkini1LkfUc4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/B45104t18-I" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/4154332882938206217/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=4154332882938206217" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/4154332882938206217?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/4154332882938206217?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/B45104t18-I/adding-new-nic-driver-to-zenworks.html" title="Adding a new NIC driver to ZENworks Imaging" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/07/adding-new-nic-driver-to-zenworks.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MGSXs9cSp7ImA9WxFaEUo.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-8731636805911910107</id><published>2010-07-15T17:23:00.000+12:00</published><updated>2010-07-15T17:23:48.569+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-15T17:23:48.569+12:00</app:edited><title>DHCP Options to use ZENworks Imaging with a Microsoft DHCP Server</title><content type="html">&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;First add PXEClient 60 as an option for DHCP:&lt;br /&gt;
&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;From the command line on your DHCP server&lt;br /&gt;
&lt;br /&gt;
netsh&lt;br /&gt;
dhcp server \\server_name&lt;br /&gt;
add optiondef 60 PXEClient 60 STRING 0 comment="Option added for PXE Boot Support"&lt;br /&gt;
show option value all&lt;br /&gt;
set optionvalue 60 string PXEClient&lt;br /&gt;
&lt;br /&gt;
Start up your DHCP MMC Snapin&lt;br /&gt;
Add the following to the Scope Options:&lt;br /&gt;
066 Boot Server Host Name - This should equal the IP address of the PXE server&lt;br /&gt;
067 Bootfile Name - For a ZENworks server enter "nvlnbp.sys"&lt;br /&gt;
060 PXEClient - 0 as the string value&lt;/span&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-8731636805911910107?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Cxfg0wPb_F5hr6hG40ZoHWs4R0s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Cxfg0wPb_F5hr6hG40ZoHWs4R0s/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Cxfg0wPb_F5hr6hG40ZoHWs4R0s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Cxfg0wPb_F5hr6hG40ZoHWs4R0s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/ZG9T2iR5FDE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/8731636805911910107/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=8731636805911910107" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/8731636805911910107?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/8731636805911910107?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/ZG9T2iR5FDE/dhcp-options-to-use-zenworks-imaging.html" title="DHCP Options to use ZENworks Imaging with a Microsoft DHCP Server" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/07/dhcp-options-to-use-zenworks-imaging.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04MR3Y6fSp7ImA9Wx5UEUU.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-244060680117504986</id><published>2010-07-14T20:06:00.001+12:00</published><updated>2010-10-16T12:39:46.815+13:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-16T12:39:46.815+13:00</app:edited><title>Macros in ZCM</title><content type="html">&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Here's an incomplete list of macros I've found to work in ZENWorks Configuration Management:&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
${USERNAME}&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt; ${ProgramFiles}&lt;br /&gt;
${ALLUSERSPROFILE}&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;${ProgramFiles32} - if you have an app that will work on 64 bit architecture but installs to Program Files (x86)&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;As pointed out by a anonymous commenter the Novell ZCM Documentation has a few more of these macros :) Thanks for that!&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;Link &lt;a href="http://www.novell.com/documentation/zcm10/zcm10_software_distribution/?page=/documentation/zcm10/zcm10_software_distribution/data/bg0xv0t.html"&gt;here&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-244060680117504986?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OWfiHYM1k_7Ixc9rNiRggAmEvUw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OWfiHYM1k_7Ixc9rNiRggAmEvUw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OWfiHYM1k_7Ixc9rNiRggAmEvUw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OWfiHYM1k_7Ixc9rNiRggAmEvUw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/mZSztNCixlQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/244060680117504986/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=244060680117504986" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/244060680117504986?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/244060680117504986?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/mZSztNCixlQ/macros-in-zcm.html" title="Macros in ZCM" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/07/macros-in-zcm.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4MSHY4eyp7ImA9WxFWGEw.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-4250652561593905679</id><published>2010-06-06T19:54:00.002+12:00</published><updated>2010-06-06T20:29:49.833+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-06T20:29:49.833+12:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Group Policy" /><category scheme="http://www.blogger.com/atom/ns#" term="Printer Deployment" /><category scheme="http://www.blogger.com/atom/ns#" term="Printers" /><category scheme="http://www.blogger.com/atom/ns#" term="Group Policy Preferences" /><title>How to allow users to install printers in a domain</title><content type="html">&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;I had a small issue a little while ago in that after a number of user had been moved into the local computer standard users group they became unable to install printer drivers from the windows print servers.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Here's how to by pass this using group policy:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;User Configuration &amp;gt; Administrative Templates &amp;gt; Control Panel &amp;gt; Printers &amp;gt; Point and Print Restriction - Set to disabled.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Computer Configuration &amp;gt; Windows Settings &amp;gt; Local Policies &amp;gt; User Righter Assignment &amp;gt; Load and unload device driver - add the relevant account or group that needs to install printers.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Computer Configuration &amp;gt; Windows Settings &amp;gt; Local Policies &amp;gt; Security Options &amp;gt; Device &amp;gt; Prevent users from Installing Printer Drivers - Set to disabled.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Hope that helps anyone else.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-4250652561593905679?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Y9ZNj9f4clWnNIFe83w2_DmQovs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Y9ZNj9f4clWnNIFe83w2_DmQovs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Y9ZNj9f4clWnNIFe83w2_DmQovs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Y9ZNj9f4clWnNIFe83w2_DmQovs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/NvFm40iETCg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/4250652561593905679/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=4250652561593905679" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/4250652561593905679?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/4250652561593905679?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/NvFm40iETCg/how-to-allow-users-to-install-printers.html" title="How to allow users to install printers in a domain" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/06/how-to-allow-users-to-install-printers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0AFRnoyfSp7ImA9WxFWFUg.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-8589353556655664988</id><published>2010-06-02T12:36:00.004+12:00</published><updated>2010-06-03T22:08:37.495+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-03T22:08:37.495+12:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Group Policy" /><category scheme="http://www.blogger.com/atom/ns#" term="Printer Deployment" /><category scheme="http://www.blogger.com/atom/ns#" term="Printers" /><category scheme="http://www.blogger.com/atom/ns#" term="Group Policy Preferences" /><title>Deploying Printers via Group Policy Preferences</title><content type="html">&lt;span style="font-size: small;"&gt;&lt;/span&gt;&lt;span style="font-family: Verdana,sans-serif; font-size: small;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;meta content="text/html; charset=utf-8" http-equiv="Content-Type"&gt;&lt;/meta&gt;&lt;meta content="Word.Document" name="ProgId"&gt;&lt;/meta&gt;&lt;meta content="Microsoft Word 12" name="Generator"&gt;&lt;/meta&gt;&lt;meta content="Microsoft Word 12" name="Originator"&gt;&lt;/meta&gt;&lt;link href="file:///C:%5CDOCUME%7E1%5CNathanC%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml" rel="File-List"&gt;&lt;/link&gt;&lt;link href="file:///C:%5CDOCUME%7E1%5CNathanC%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_editdata.mso" rel="Edit-Time-Data"&gt;&lt;/link&gt;&lt;link href="file:///C:%5CDOCUME%7E1%5CNathanC%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx" rel="themeData"&gt;&lt;/link&gt;&lt;link href="file:///C:%5CDOCUME%7E1%5CNathanC%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml" rel="colorSchemeMapping"&gt;&lt;/link&gt;&lt;style&gt;
&lt;!--
 /* Font Definitions */
 @font-face
	{font-family:"Cambria Math";
	panose-1:2 4 5 3 5 4 6 3 2 4;
	mso-font-alt:"Palatino Linotype";
	mso-font-charset:0;
	mso-generic-font-family:roman;
	mso-font-pitch:variable;
	mso-font-signature:-1610611985 1107304683 0 0 415 0;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;
	mso-font-alt:"Times New Roman";
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-520092929 1073786111 9 0 415 0;}
@font-face
	{font-family:"Lucida Sans Unicode";
	panose-1:2 11 6 2 3 5 4 2 2 4;
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-2147480833 14699 0 0 63 0;}
@font-face
	{font-family:"Lucida Sans";
	panose-1:2 11 6 2 3 5 4 2 2 4;
	mso-font-alt:"Times New Roman";
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:3 0 0 0 1 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:"";
	margin:0cm;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;
	mso-ansi-language:EN-NZ;}
span.EmailStyle15
	{mso-style-type:personal;
	mso-style-noshow:yes;
	mso-style-unhide:no;
	mso-ansi-font-size:11.0pt;
	mso-bidi-font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;
	color:windowtext;}
.MsoChpDefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;
	mso-ansi-language:EN-NZ;}
@page Section1
	{size:612.0pt 792.0pt;
	margin:72.0pt 72.0pt 72.0pt 72.0pt;
	mso-header-margin:36.0pt;
	mso-footer-margin:36.0pt;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
--&gt;
&lt;/style&gt;  &lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Hi all, here’s how to setup printers so they deploy via Group Policy Preferences.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Create the GP, give it a descriptive name.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Right click the newly created GP and select edit.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Expand Preferences under User Configuration&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_VFPIf5ZDpa4/TAWlI8gHwMI/AAAAAAAAIzQ/AQLw7rzIUI4/s1600/1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_VFPIf5ZDpa4/TAWlI8gHwMI/AAAAAAAAIzQ/AQLw7rzIUI4/s320/1.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;
&lt;span lang="EN-NZ" style="font-size: small;"&gt;Expand Control Panel Settings,right click Printers and select New Shared Printer.&lt;br /&gt;
&lt;br /&gt;
If the Printer has been published to AD, which it should be, click browse under shared printer and double click the printer to add, for some reason it doesn’t like server paths longer than 7 characters, so make sure the share path is correct.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span lang="EN-NZ" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span lang="EN-NZ" style="font-size: small;"&gt;Click Common&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; font-family: Verdana,sans-serif; text-align: center;"&gt;&lt;span style="font-size: small;"&gt;&lt;a href="http://1.bp.blogspot.com/_VFPIf5ZDpa4/TAWmBM0l38I/AAAAAAAAIzg/hlGC4qaujGY/s1600/3.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_VFPIf5ZDpa4/TAWmBM0l38I/AAAAAAAAIzg/hlGC4qaujGY/s320/3.png" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="font-family: Verdana,sans-serif;"&gt;&lt;span lang="EN-NZ" style="font-size: small;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="font-family: Verdana,sans-serif;"&gt;&lt;span lang="EN-NZ" style="font-size: small;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;Choose to Run in the logged-on users security context, if not the policy fails to apply and an error is displayed in the Event Viewer advising access denied.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;Tick to Remove this item when it is no longer applied, purely optional but good when the printers get changed, &lt;b&gt;for some reason though this seems to remove the printers and then re-adds them when Group Policy refreshes, which may change the default printer for some users.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;If you want to use the Item-level targeting to deploy to only a specific subnet, computer etc.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-8589353556655664988?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/BfgpGd0CrL8BHe85CYkxUMo693c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BfgpGd0CrL8BHe85CYkxUMo693c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/BfgpGd0CrL8BHe85CYkxUMo693c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BfgpGd0CrL8BHe85CYkxUMo693c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/6_nnXsQVkbU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/8589353556655664988/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=8589353556655664988" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/8589353556655664988?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/8589353556655664988?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/6_nnXsQVkbU/deploying-printers-via-group-policy.html" title="Deploying Printers via Group Policy Preferences" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_VFPIf5ZDpa4/TAWlI8gHwMI/AAAAAAAAIzQ/AQLw7rzIUI4/s72-c/1.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2010/06/deploying-printers-via-group-policy.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0IMSHozeSp7ImA9WxFWFUg.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-5900819508128622599</id><published>2009-01-12T20:39:00.004+13:00</published><updated>2010-06-03T22:06:29.481+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-03T22:06:29.481+12:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Video editing" /><category scheme="http://www.blogger.com/atom/ns#" term="Linux" /><title>KDENLIVE and KINO</title><content type="html">&lt;span style="font-size: small;"&gt;&lt;/span&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Happy New Year all.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;I've been working on getting all my video footage off my DV Camera (an old school Panasonic NV-DS50) onto my media PC in the lounge.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;So running Kubuntu 8.10 I installed KDENLIVE and selected the Record Mon in the Project Monitor section, selected to connect to my Camera plugged in by firewire and no go.... mm I thought, I'll try KINO, this time I saw an issue:&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;WARNING: raw1394 kernel module not loaded or failure to read/write /dev/raw1394!&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;In my search for a solution I found this in the Ubuntu forums:&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;http://ubuntuforums.org/showthread.php?t=329994&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Run the following from a command&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;chmod 777 /dev/raw1394&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Or browse using Dolphin and right click and set the permissions that way.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Happy editing :)&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-5900819508128622599?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2cXXRFPgFn3N7-OAWZweMUkQUlI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2cXXRFPgFn3N7-OAWZweMUkQUlI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2cXXRFPgFn3N7-OAWZweMUkQUlI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2cXXRFPgFn3N7-OAWZweMUkQUlI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/XCjcb9YKobA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/5900819508128622599/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=5900819508128622599" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/5900819508128622599?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/5900819508128622599?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/XCjcb9YKobA/kdenlive-and-kino.html" title="KDENLIVE and KINO" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2009/01/kdenlive-and-kino.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkENQXw6fip7ImA9WxdbE04.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-3159276291711275383</id><published>2008-08-10T13:04:00.003+12:00</published><updated>2008-08-10T13:11:30.216+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-10T13:11:30.216+12:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="OpenSuse 11" /><category scheme="http://www.blogger.com/atom/ns#" term="Geek" /><category scheme="http://www.blogger.com/atom/ns#" term="Linux" /><category scheme="http://www.blogger.com/atom/ns#" term="Kubuntu" /><title>Ping hostname from Linux</title><content type="html">&lt;span style="font-family: arial;"&gt;Some people have issues with pinging other computers on their network&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;Here's the fix:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;Add "wins" to your nsswitch.conf file&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;To do this open up an terminal and log in as root&lt;/span&gt; &lt;span style="font-family: arial;"&gt;and type the following:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-weight: bold;"&gt;vi /etc/nsswitch.conf&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;find the line:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;hosts:          files mdns4_minimal [NOTFOUND=return] dns&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;and add wins to the end of it, save the file by typing ":wq"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;now ping a computer with the hostname.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-3159276291711275383?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/gymiYFB6rg_vEF7KXRnObZpltVw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gymiYFB6rg_vEF7KXRnObZpltVw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/gymiYFB6rg_vEF7KXRnObZpltVw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gymiYFB6rg_vEF7KXRnObZpltVw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/4qIyExYmTtw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/3159276291711275383/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=3159276291711275383" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/3159276291711275383?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/3159276291711275383?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/4qIyExYmTtw/ping-hostname-from-linux.html" title="Ping hostname from Linux" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2008/08/ping-hostname-from-linux.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkYMRn85eSp7ImA9WxdUFk4.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-7180103399721797831</id><published>2008-08-01T06:41:00.007+12:00</published><updated>2008-08-02T10:36:27.121+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-02T10:36:27.121+12:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="OpenSuse 11" /><category scheme="http://www.blogger.com/atom/ns#" term="Geek" /><category scheme="http://www.blogger.com/atom/ns#" term="computers" /><category scheme="http://www.blogger.com/atom/ns#" term="Linux" /><category scheme="http://www.blogger.com/atom/ns#" term="Telecom" /><title>Telecom TStick on OpenSuse 11</title><content type="html">The Telecom TStick, also known as the Sierrawireless Compass 597, works under linux rather well, here's a run down on what needs to be done to get it to work.&lt;br /&gt;&lt;br /&gt;I followed the instructions &lt;a href="http://www.sierrawireless.com/faq/ShowFAQ.aspx?ID=1232"&gt;here&lt;/a&gt; and took some of the details from &lt;a href="http://andrew.mcmillan.net.nz/node/58"&gt;here&lt;/a&gt; to get it to work correctly. I then wrote a small script that can be run from the command line under root to connect to the internet.&lt;br /&gt;&lt;br /&gt;Lets get connected to the web:&lt;br /&gt;Download the Sierrawireless files:&lt;br /&gt;For Linux Kernel 2.6.21, 2.6.22 and 2.6.23&lt;br /&gt;&lt;a href="http://www.sierrawireless.com/resources/support/Software/Linux/v1.2.10b_Kernel2.6.21.zip"&gt;Sierra.c Drivers&lt;/a&gt; v 1.2.10b&lt;br /&gt;&lt;a href="http://www.sierrawireless.com/resources/support/Software/Linux/ppp-scripts.tar.gz"&gt;PPPD Scripts&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;For Linux Kernel 2.6.24&lt;br /&gt;&lt;a href="http://www.sierrawireless.com/resources/support/Software/Linux/v1.2.10b_Kernel2.6.25.zip"&gt;Sierra.c Drivers&lt;/a&gt; v 1.2.10b&lt;br /&gt;&lt;a href="http://www.sierrawireless.com/resources/support/Software/Linux/ppp-scripts.tar.gz"&gt;PPPD Scripts&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;To find out what the kernel is that your running type the following from a Terminal under root:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# uname -r&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;My kernel was # 2.6.25.11-0.1-default&lt;br /&gt;&lt;br /&gt;Next check to see what Sierra wireless drivers are already installed&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# modinfo sierra&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If the result is "could not find module sierra" then the drivers are not installed, my result was that I had 1.2.9 version installed, so updating them is a good idea.&lt;br /&gt;&lt;br /&gt;For the rest I'll presume you have the kernel build tools installed along with the latest kernel, if not do the following from a terminal.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# zypper dist-upgrade&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# zypper install make&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Change to root user and "cd" to the directory where you downloaded the files and unzip the kernel files then change to the kernel files directpry.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# su -&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# cd /home/downloads&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# unzip v1.2.10b_Kernel2.6.25.zip&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# cd v1.2.10b_Kernel2.6.25/&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Remove any older versions of the sierrawireless drivers.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;# rmmod sierra &lt;span style=""&gt; &lt;/span&gt;or modprobe –r sierra&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Compile and install the new Sierra Wireless drivers&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# make&lt;br /&gt;# make install&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Now exit root user and change to the download directory.&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;# exit&lt;br /&gt;# cd /home/downloads&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Unzip the pppd scripts.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;$ tar –zxf pppd-scripts.tar.gz&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;br /&gt;Change to root and copy the pppd script files to the pppd/peers directory.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# su -&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;" lang="FR"&gt;&lt;br /&gt;# cp –r ./ppp /etc/&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;# cd /etc/ppp&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;# chmod a+x ip-up.local ip-down.local&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Now change to the following directory.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;b&gt;# cd /etc/ppp/peers&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;Edit the cdma file.&lt;b&gt;&lt;br /&gt;&lt;br /&gt;# vi cdma&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;To edit in vi press "i" and add the following lines to the file under the noauth line, this is the username and password to use for connecting to the Telecom network.&lt;b&gt;&lt;br /&gt;user mobile@jamamobile&lt;br /&gt;password telecom&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;Place a # infront of the noauth line, this stops the line from being executed.&lt;b&gt;&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;To save the file and exit it at the same time do the following.&lt;b&gt;&lt;br /&gt;&lt;br /&gt;Press escape and type :wq and then press enter&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;Now you can connect to the Telecom network, put the TStick into the usb port and type the following from the command line under root&lt;b&gt;&lt;br /&gt;&lt;br /&gt;# cd /etc/ppp/peers&lt;br /&gt;# pppd call cdma&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;This will throw back a whole page of text as it goes through the authentication and connects to the network.&lt;br /&gt;&lt;br /&gt;Now you can browse the internet!&lt;b&gt;&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;I then created a small batch file in my home directory which is run under the root account&lt;b&gt;.&lt;br /&gt;&lt;br /&gt;Create the file by typing the following and then making it executable.&lt;br /&gt;&lt;br /&gt;# su -&lt;br /&gt;# vi T3G&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;Copy and paste the following into the file.&lt;b&gt;&lt;br /&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;cd /etc/ppp/peers&lt;br /&gt;pppd call cdma&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;Type :wq to save and exit. Then make it executable.&lt;b&gt;&lt;br /&gt;&lt;br /&gt;# chmod a+x T3G&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;Now when you want to connect with the TStick type the following.&lt;b&gt;&lt;br /&gt;&lt;br /&gt;$ su -&lt;br /&gt;# /home/your username/T3G&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-7180103399721797831?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Glc0H-eZnMPp82r1MIgR-4xVtRw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Glc0H-eZnMPp82r1MIgR-4xVtRw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Glc0H-eZnMPp82r1MIgR-4xVtRw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Glc0H-eZnMPp82r1MIgR-4xVtRw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/keGi7iP79qc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/7180103399721797831/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=7180103399721797831" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/7180103399721797831?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/7180103399721797831?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/keGi7iP79qc/telecom-tstick-on-opensuse-11.html" title="Telecom TStick on OpenSuse 11" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2008/08/telecom-tstick-on-opensuse-11.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0UMQn8_eyp7ImA9WxdVFEk.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-7147362856689703414</id><published>2008-07-19T15:46:00.003+12:00</published><updated>2008-07-19T16:21:23.143+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-19T16:21:23.143+12:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Geek" /><category scheme="http://www.blogger.com/atom/ns#" term="computers" /><category scheme="http://www.blogger.com/atom/ns#" term="iPod" /><title>iPod and the 1415 error</title><content type="html">&lt;span style="font-family: arial;"&gt;My wife just won herself a &lt;a href="http://www.apple.com/ipodnano/"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;iPod&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;Nano&lt;/span&gt; 8GB&lt;/a&gt;. They're quite nice if you can get the past the whole &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_2"&gt;proprietary&lt;/span&gt; formats. One of the issues I found was that whenever I tried to update the firmware it would crash with the following error "could not update &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;iPod&lt;/span&gt; unspecified error (1415)" other things that were happening as well were &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;iPod&lt;/span&gt; disconnecting randomly, not starting up &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;iTunes&lt;/span&gt; when the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;iPod&lt;/span&gt; was plugged in and disconnecting even while &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;synching&lt;/span&gt;.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;&lt;a href="http://www.wikihow.com/Fix-Error-1418-%28or-1415,-1417,-1428%29-on-iPod-Classic"&gt;This is the fix I found&lt;/a&gt;:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;Shutdown iTunes and unplug your ipod, paste the below into notepad and save as a &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;cmd&lt;/span&gt; file, then run the file, it took about 1-2 minutes to finish though so just be patient.&lt;/span&gt;&lt;br /&gt;&lt;blockquote style="font-family: arial;"&gt;regsvr32 /s softpub.dll&lt;br /&gt;regsvr32 /s wintrust.dll&lt;br /&gt;regsvr32 /s dssenh.dll&lt;br /&gt;regsvr32 /s rsaenh.dll&lt;br /&gt;regsvr32 /s gpkcsp.dll&lt;br /&gt;regsvr32 /s sccbase.dll&lt;br /&gt;regsvr32 /s slbcsp.dll&lt;br /&gt;regsvr32 /s mssip32.dll&lt;br /&gt;regsvr32 /s cryptdlg.dll&lt;br /&gt;regsvr32 /s initpki.dll&lt;/blockquote&gt;&lt;span style="font-family: arial;"&gt;When iTunes was installed it didn't register the dll files correctly, either because Windows was still using them or it just didn't register them. Now she can enjoy the new iPod with no problems :)&lt;/span&gt;&lt;br /&gt;&lt;blockquote style="font-family: arial;"&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-7147362856689703414?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/HQ8kLBYn_emQU5Z8w0n5-Nf3L10/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/HQ8kLBYn_emQU5Z8w0n5-Nf3L10/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/HQ8kLBYn_emQU5Z8w0n5-Nf3L10/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/HQ8kLBYn_emQU5Z8w0n5-Nf3L10/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/8zkeZZUiHyg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/7147362856689703414/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=7147362856689703414" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/7147362856689703414?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/7147362856689703414?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/8zkeZZUiHyg/ipod-and-1415-error.html" title="iPod and the 1415 error" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2008/07/ipod-and-1415-error.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0AMRno_eSp7ImA9WxVbFkg.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-409214174301317357</id><published>2008-07-07T21:39:00.004+12:00</published><updated>2009-04-02T21:09:47.441+13:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-02T21:09:47.441+13:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="OpenSuse 11" /><category scheme="http://www.blogger.com/atom/ns#" term="DVD Playback" /><category scheme="http://www.blogger.com/atom/ns#" term="Codecs" /><title>Codecs in OpenSuse 11</title><content type="html">&lt;span style="font-family:arial;"&gt;Took me a while to find all the codecs for running video files in Novell's new OpenSuse 11, I should have just looked on the Community Build site..idiot :D &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;How easy could it get!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Go &lt;/span&gt;&lt;a style="font-family: arial;" href="http://opensuse-community.org/Restricted_Formats/11.0"&gt;here&lt;/a&gt;&lt;span style="font-family:arial;"&gt; for all the details.&lt;br /&gt;&lt;br /&gt;If you using OpenSuse 11.1 go &lt;a href="http://opensuse-community.org/Restricted_Formats/11.1"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-409214174301317357?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/1qutAIs6u9GM74_pfD16g_C_G3o/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1qutAIs6u9GM74_pfD16g_C_G3o/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/1qutAIs6u9GM74_pfD16g_C_G3o/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1qutAIs6u9GM74_pfD16g_C_G3o/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/mS3rVuSza7c" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/409214174301317357/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=409214174301317357" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/409214174301317357?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/409214174301317357?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/mS3rVuSza7c/codecs-in-opensuse-11.html" title="Codecs in OpenSuse 11" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2008/07/codecs-in-opensuse-11.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck8DQX0zfip7ImA9WxdbE04.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-8130785651002658977</id><published>2008-07-06T19:21:00.003+12:00</published><updated>2008-08-10T13:14:30.386+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-10T13:14:30.386+12:00</app:edited><title>Adobe Reader 9</title><content type="html">&lt;span style="font-family: arial;font-family:arial;" &gt;Adobe has just released Adobe Reader 9.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;Edit: you can now download the Adobe Customwiz 9 from Adobe, &lt;/span&gt;&lt;a style="font-family: arial;" href="http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=3993&amp;amp;fileID=3727"&gt;linky&lt;/a&gt;&lt;span style="font-family: arial;"&gt; makes life much easier!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;I've only just created the Application Object in ZENWorks ready for deployment so have not had a chance to test the features at all.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Apparently it has faster startup times along with some security updates and a few additional features, nothing that really says that you should definitely install this though, other than the faster start times I suppose, I'll see how it goes over the next week though before I role it out to about 500 plus users.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;For deployment I use &lt;/span&gt;&lt;a style="font-family: arial;" href="http://www.technipages.com/download-orca-msi-editor.html"&gt;Orca&lt;/a&gt;&lt;span style="font-family:arial;"&gt; and followed the instructions posted on &lt;/span&gt;&lt;a style="font-family: arial;" href="http://www.appdeploy.com/packages/detail.asp?id=1303"&gt;AppDeploy.com,&lt;/a&gt;&lt;span style="font-family:arial;"&gt; added the parameters into the application object and you're set to go.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-8130785651002658977?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/lDwjOHUblWnGH9oyyo5OkF5o8PU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lDwjOHUblWnGH9oyyo5OkF5o8PU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/lDwjOHUblWnGH9oyyo5OkF5o8PU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lDwjOHUblWnGH9oyyo5OkF5o8PU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/fzpndq7YUZ4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/8130785651002658977/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=8130785651002658977" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/8130785651002658977?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/8130785651002658977?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/fzpndq7YUZ4/adobe-reader-9.html" title="Adobe Reader 9" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2008/07/adobe-reader-9.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUQCQns7cSp7ImA9WB9QFEk.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-4396285297979801420</id><published>2007-10-25T22:10:00.000+13:00</published><updated>2007-10-27T13:02:43.509+13:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-10-27T13:02:43.509+13:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Geek" /><category scheme="http://www.blogger.com/atom/ns#" term="Linux" /><category scheme="http://www.blogger.com/atom/ns#" term="Kubuntu" /><title>Road to Kubuntu 7.10</title><content type="html">&lt;a href="http://4.bp.blogspot.com/_VFPIf5ZDpa4/RyBlHVqQvtI/AAAAAAAAAnI/zyNZwl5Hjgs/s1600-h/screenshot.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_VFPIf5ZDpa4/RyBlHVqQvtI/AAAAAAAAAnI/zyNZwl5Hjgs/s320/screenshot.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5125207552695516882" /&gt;&lt;/a&gt;&lt;br /&gt;Been a while since I blogged, hehe just been too lazy I guess and doing house stuff along with some study :)&lt;br /&gt;&lt;br /&gt;While I've been lazy I thought I'd install Kubuntu 7.10 the latest and greatest and all that.&lt;br /&gt;&lt;br /&gt;The install went well, I did however forget to check my backup of my home directory from OpenSuse 10.3 and ended up loosing a few important docs, big oopppps there!!&lt;br /&gt;&lt;br /&gt;The install went well and over all I feel that it is a good desktop operating system with very few issues except the following:&lt;br /&gt;&lt;br /&gt;My wireless card flakes out now and then, I solved this by installing ndiswrapper (download and instructions at http://www.ndiswrapper.org ), now it works great.&lt;br /&gt;&lt;br /&gt;Dolphin, this is the replacement for Konqueror, this is similar to Explorer for all those Windows people out there, and it works great for what it does, I like the new options down the right hand side: edit as root, archive etc there a nice touch. I'm a fan of shortcut keys, my favourite is Alt+Left Arrow (just like hitting the back button) but this doesn't work straight off the mark with Dolphin. This is easily changed under Settings and then Shortcuts, the default is Backspace though.&lt;br /&gt;&lt;br /&gt;My other issue was that when I closed Dolphin I would get the error: "unable to save bookmarks /home/.kde/share/apps/Dolphin/Bookmarks/... etc"&lt;br /&gt;To solve this do the following:&lt;br /&gt;cd /home&lt;br /&gt;sudo chown -R username:username username - (username is your username)&lt;br /&gt;&lt;br /&gt;One major issue I had was that Kubuntu thought that I had a screen resolution of 1280x1024, this had the unfortunate side effect of slowing the boot process considerably, even though once it got to the desktop the resolution was fine (1024x768), I solved this by doing the following from within Konsole:&lt;br /&gt;sudo nano /etc/usplash.conf&lt;br /&gt;Then change the size to the correct one for your screen size.&lt;br /&gt;Then type the following again in Konsole:&lt;br /&gt;sudo update-usplash-theme usplash-theme-kubuntu&lt;br /&gt;Boot time is now well under one minute for me :D&lt;br /&gt;&lt;br /&gt;Another problem I've had is that 7.10 wants to update itself to the latest version of Kubuntu 7.10, which is very strange considering it already is the latest. This issue is now fixed the latest updates in the last couple of day.&lt;br /&gt;&lt;br /&gt;More to come maybe...&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-4396285297979801420?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RZkmQzAZOROatpP6v8jfU6DRdEI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RZkmQzAZOROatpP6v8jfU6DRdEI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RZkmQzAZOROatpP6v8jfU6DRdEI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RZkmQzAZOROatpP6v8jfU6DRdEI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/DL_E8G8xFXg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/4396285297979801420/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=4396285297979801420" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/4396285297979801420?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/4396285297979801420?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/DL_E8G8xFXg/road-to-kubuntu-710.html" title="Road to Kubuntu 7.10" /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_VFPIf5ZDpa4/RyBlHVqQvtI/AAAAAAAAAnI/zyNZwl5Hjgs/s72-c/screenshot.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2007/10/road-to-kubuntu-710.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkMBR3k6eyp7ImA9WB5WGEs.&quot;"><id>tag:blogger.com,1999:blog-2305237957932069624.post-7290937456696478305</id><published>2007-07-31T18:35:00.000+12:00</published><updated>2007-07-31T18:47:36.713+12:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-07-31T18:47:36.713+12:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Zenworks" /><category scheme="http://www.blogger.com/atom/ns#" term="Work painting" /><category scheme="http://www.blogger.com/atom/ns#" term="new case" /><title>Not much else...</title><content type="html">&lt;span style="font-family: arial;"&gt;More painting has been done around the house which is nice and all, my dad's coming up from Christchurch in a few weeks to help which will be a great time to catch up and learn some house renovation tips in the process :D&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;Sam and I now have curtains in our room as opposed to blinds, makes the room much warmer I feel, or it could be just warmer at night anyway.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;Got a new case for the Media Centre PC, check out the pic:, mmm very nice :D&lt;/span&gt;&lt;br /&gt;&lt;a style="font-family: arial;" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_VFPIf5ZDpa4/Rq7ar1PgWTI/AAAAAAAAAlk/UBfAeYA3IUg/s1600-h/459031.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_VFPIf5ZDpa4/Rq7ar1PgWTI/AAAAAAAAAlk/UBfAeYA3IUg/s320/459031.jpg" alt="" id="BLOGGER_PHOTO_ID_5093248675163953458" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family: arial;"&gt;Work's still going well, been working on a project to move from Zenworks 4 to Zenworks 10 in the next few months, Zenworks 10 is currently in Beta still but due for release in about a couple of weeks time. Has lots of new features that willl make my job slightly easier and more enjoyable, plus it supports Vista which will help out over the next few years as we look at Vista. To prepare for the project I've been tasked with gathering info on all the little apps we have throughout the network, with about 500 of the suckers it was no easy task, still have a few other jobs to do as well as for the project, not looking forward to it really ;)&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Ramblings about SOE and Network stuff&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2305237957932069624-7290937456696478305?l=nznathan.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/VxQU9geLoF45lN-QbkX21Hz9eIQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VxQU9geLoF45lN-QbkX21Hz9eIQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/VxQU9geLoF45lN-QbkX21Hz9eIQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VxQU9geLoF45lN-QbkX21Hz9eIQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NathanCook/~4/cxM8kimWYv8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nznathan.blogspot.com/feeds/7290937456696478305/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2305237957932069624&amp;postID=7290937456696478305" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/7290937456696478305?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2305237957932069624/posts/default/7290937456696478305?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NathanCook/~3/cxM8kimWYv8/not-much-else.html" title="Not much else..." /><author><name>Nathan Cook</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_VFPIf5ZDpa4/Rq7ar1PgWTI/AAAAAAAAAlk/UBfAeYA3IUg/s72-c/459031.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nznathan.blogspot.com/2007/07/not-much-else.html</feedburner:origLink></entry></feed>

