Jump to content
DeployCentral

flashware

Members
  • Posts

    14
  • Joined

  • Last visited

Posts posted by flashware

  1. Yes, you can update your virtual reference machine overtime, however you will need to account for product activation. Depending on the licensing model that you company uses the manner in which you accomplish this could vary. I would suggest activating the virtual machine if you intend to use it and update it overtime.

    Ok, I'll see what my colleagues say about charging each client for 1 additional license, so their base image has that functionality.

    Basically though for me, I was hoping to have 1 base image, that when I then need to build for a new client I can modify that one to suit ; looks like I won't be able to :(

  2. I've got another 20 machines to deploy tomorrow, so will test and report back!

    Ok, it didn't seem to work.

    I tried doing it using cmd /n as well (as per ).

    The option I choose for it was "After image is applied" rather than before applied, and whatever the other 2 or so options were.

    If after the install I try run it manually, it gives an error on Line 14, Char 25.

    "Object required: objnode, Code: 800A01A8, Source: Microsoft VBScript runtime error".

  3. For the phase of the task you will want to specify after image is applied. You can prefix with cscript.exe or wscript.exe, or just put the path to the script, all should work.

    When booting %SmartDeploy_Media% is set as an environment variable that points to the boot device, which you can use to specify the path to your script. The [AnswerFolder] variable is essentially the same thing but will not work when calling a task.

    Thanks,

    Erik

    Ok, so essentially I could just put

    %SmartDeploy_Media%\uk-localise.vbs and it should work?

  4. Hello Daniel,

    Currently SmartDeploy only has support for the specific language packs that are included with Windows 7, XP etc... That list should be what is defined at this site: http://technet.microsoft.com/en-us/library/dd744369(WS.10).aspx. The UK localization settings are not included, but they can be set when deploying your image. If you are deploying Windows 7 you can copy the code from below add it to a vbs file and then set it to run as a post image task from the advanced options of the Deploy Wizard. If you are deploying a different operating system or run into any problems please shoot support an email at support@smartdeploy.com and we can answer your questions.

    UpdateXML "T:\windows\system32\sysprep\unattend.xml"
    UpdateXML "T:\windows\panther\unattend.xml"
    
    Sub UpdateXML(StrFileName)
    
            Set xmlDoc = CreateObject("Msxml2.DOMDocument.6.0")
    
            xmlDoc.Async = "False"
            xmlDoc.Load(strFileName)
    
            xmldoc.setProperty "SelectionNamespaces", "xmlns:bk='urn:schemas-microsoft-com:unattend'"
            set objnode = xmlDoc.selectsingleNode("//bk:InputLocale")
    
                            objnode.text = "en-GB"
    
            xmldoc.setProperty "SelectionNamespaces", "xmlns:bk='urn:schemas-microsoft-com:unattend'"
    	set objnode = xmlDoc.selectsingleNode("//bk:SystemLocale")
    
    			objnode.text = "en-GB"
    
            xmldoc.setProperty "SelectionNamespaces", "xmlns:bk='urn:schemas-microsoft-com:unattend'"
    	set objnode = xmlDoc.selectsingleNode("//bk:UILanguage")
    
    			objnode.text = "en-GB"
    
            xmldoc.setProperty "SelectionNamespaces", "xmlns:bk='urn:schemas-microsoft-com:unattend'"
    	set objnode = xmlDoc.selectsingleNode("//bk:UserLocale")
    
    			objnode.text = "en-GB"
    
            xmlDoc.Save(strfilename)
    
    End Sub

    Thanks,

    Erik

    Do I choose "After image is applied" ? Also, do I need to prefix it with cscript.exe ?

  5. Do you receive any specific error? Like unable to locate the network path? I would check that simple file sharing is disabled on the XP machines, and that Windows 7 machines are on a network identified as a domain network. You might also want to check the advanced sharing options in Windows 7, this and the network identification are found in the Network and Sharing Center. Other than that maybe see if there is a firewall blocking anything.

    If you are still having problems you can send us over the netsetup.log from c:\windows\debug and we can check to see if there were any problems in the domain join process.

    If you need specifics on how to change any of the sharing settings listed above let me know.

    Thanks,

    Erik

    I'll check on Monday which is when I'm next on-site.

    Thanks!

  6. Hello Daniel,

    Currently SmartDeploy only has support for the specific language packs that are included with Windows 7, XP etc... That list should be what is defined at this site: http://technet.microsoft.com/en-us/library/dd744369(WS.10).aspx. The UK localization settings are not included, but they can be set when deploying your image. If you are deploying Windows 7 you can copy the code from below add it to a vbs file and then set it to run as a post image task from the advanced options of the Deploy Wizard. If you are deploying a different operating system or run into any problems please shoot support an email at support@smartdeploy.com and we can answer your questions.

    UpdateXML "T:\windows\system32\sysprep\unattend.xml"
    UpdateXML "T:\windows\panther\unattend.xml"
    
    Sub UpdateXML(StrFileName)
    
            Set xmlDoc = CreateObject("Msxml2.DOMDocument.6.0")
    
            xmlDoc.Async = "False"
            xmlDoc.Load(strFileName)
    
            xmldoc.setProperty "SelectionNamespaces", "xmlns:bk='urn:schemas-microsoft-com:unattend'"
            set objnode = xmlDoc.selectsingleNode("//bk:InputLocale")
    
                            objnode.text = "en-GB"
    
            xmldoc.setProperty "SelectionNamespaces", "xmlns:bk='urn:schemas-microsoft-com:unattend'"
    	set objnode = xmlDoc.selectsingleNode("//bk:SystemLocale")
    
    			objnode.text = "en-GB"
    
            xmldoc.setProperty "SelectionNamespaces", "xmlns:bk='urn:schemas-microsoft-com:unattend'"
    	set objnode = xmlDoc.selectsingleNode("//bk:UILanguage")
    
    			objnode.text = "en-GB"
    
            xmldoc.setProperty "SelectionNamespaces", "xmlns:bk='urn:schemas-microsoft-com:unattend'"
    	set objnode = xmlDoc.selectsingleNode("//bk:UserLocale")
    
    			objnode.text = "en-GB"
    
            xmlDoc.Save(strfilename)
    
    End Sub

    Thanks,

    Erik

    That's great, I'll give it a try tomorrow as I move onto my next SmartDeploy rollout!

×
×
  • Create New...