RoboPDF (unattended removal)

Can anyone point me into the right direction with removing
RoboPDF? I am able to remove it using a script that leverages WMI
but there are still two items leftover after the removal.
1. It's still listed under Add/Remove Programs
2. The RoboPDF print devices still exist.
I tried removing the Uninstall registry key but that didnt
remove it from the list of add/remove programs.
The RoboPDFCleanup.exe utility seems great but i need to
automate this on about 1500 computers and i dont want any user
interaction.
Any help on this would be much appreciated.
Thanks,
Mitch

I've seen this sort of query quite a few times over the past few months. The Office 2013 OCT tool does a fairly poor job removing previous Office versions.
Your uninstall argument is probably failing because your referencing an xml file that resides on a server file share. Config Manager will execute your argument using the system account so its probably a permissions based issue. You can test this by running
your uninstall argument using psexec which replicates this behavior.
I've approached this issue in a different way - you may wish to look at this option instead?
Microsoft have written some Office scrub vb script files to address the issue:
http://blogs.technet.com/b/odsupport/archive/2011/04/08/how-to-obtain-and-use-offscrub-to-automate-the-uninstallation-of-office-products.aspx
http://blogs.technet.com/b/odsupport/archive/2011/04/06/how-to-perform-an-uninstall-upgrade-to-office-2010.aspx
http://marckean.wordpress.com/2013/06/18/fully-automate-removal-of-any-version-office-in-preparation-for-office-365/
You could  use a batch file wrapper as your Office 2013 Configuration Manager install command – something like this would work:
@echo off
SET INSTALL=%~dp0
:Remove Microsoft Office 2010 Suites
Cscript “%INSTALL%\OffScrub10.vbs” ALL /Quiet /NoCancel
:Install Microsoft Office 2013 Professional
Setup.exe
ping 127.0.0.1 -n 5 > nul
Has worked well for me. Note that you would need to add an additional line to remove Lync 2010 - probably something like msiexec /x {YourLync2010GUID} /q would be best.
Cheers
Damon

Similar Messages

  • Unattended.xml : remove a child item containing a value

    Hi all,
    I have in a section :
            <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DiskConfiguration>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                           <CreatePartition wcm:action="add">
                                   <Order>1</Order>
                                   <Type>Primary</Type>
                                   <Size>350</Size>
                                   <Extend>false</Extend>
                              </CreatePartition>
                              <CreatePartition wcm:action="add">
                                   <Order>2</Order>
                                   <Type>EFI</Type>
                                   <Size>100</Size>
                                   <Extend>false</Extend>
                              </CreatePartition>
                              <CreatePartition wcm:action="add">
                                   <Order>3</Order>
                                   <Type>MSR</Type>
                                   <Size>128</Size>
                              </CreatePartition>
                              <CreatePartition wcm:action="add">
                                   <Order>4</Order>
                                   <Type>Primary</Type>
                                   <Size>64000</Size>
                                   <Extend>true</Extend>
                               </CreatePartition>
                         </CreatePartitions>
    I load the contents of the Xml in the $Xml Variable
    To remove a <CreatePartition></CreatePartition> block, I do the following :
    # Delete Partition 3 & 4 of the Template
    $tmp = $Xml.unattend.settings[1].component[1].DiskConfiguration.disk[0].CreatePartitions.CreatePartition[3] # MSR UEFI
    [void] $Xml.unattend.settings[1].component[1].DiskConfiguration.disk[0].CreatePartitions.RemoveChild($tmp)
    $tmp = $Xml.unattend.settings[1].component[1].DiskConfiguration.disk[0].CreatePartitions.CreatePartition[2] # Windows UEFI
    [void] $Xml.unattend.settings[1].component[1].DiskConfiguration.disk[0].CreatePartitions.RemoveChild($tmp)
    And if works great
    Now, I would like to remove in the second CreationPartition section the line
                                   <Size>100</Size>
    I tried :
    $tmp = $Xml.unattend.settings[1].component[1].DiskConfiguration.disk[0].CreatePartitions.CreatePartition[1].Size
    But it returns the string 100 instead of an object on <Size>100</Size>
    I also tried
    $tmp = $Xml.unattend.settings[1].component[1].DiskConfiguration.disk[0].CreatePartitions.CreatePartition[1]$tmp.RemoveAttribute("Size")
    But it does not remove "Size"
    $tmp
    action : add
    Order : 2
    Type : EFI
    Size : 100
    Extend : false
    Could you help me to find the correct syntax.
    Thanks
    ML

    Here is a complete example with the namespace:
    $txt=@'
    <?xml version="1.0" ?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings>
    <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DiskConfiguration>
    <Disk wcm:action="add">
    <CreatePartitions>
    <CreatePartition wcm:action="add">
    <Order>1</Order>
    <Type>Primary</Type>
    <Size>350</Size>
    <Extend>false</Extend>
    </CreatePartition>
    <CreatePartition wcm:action="add">
    <Order>2</Order>
    <Type>EFI</Type>
    <Size>100</Size>
    <Extend>false</Extend>
    </CreatePartition>
    <CreatePartition wcm:action="add">
    <Order>3</Order>
    <Type>MSR</Type>
    <Size>128</Size>
    </CreatePartition>
    <CreatePartition wcm:action="add">
    <Order>4</Order>
    <Type>Primary</Type>
    <Size>64000</Size>
    <Extend>true</Extend>
    </CreatePartition>
    </CreatePartitions>
    </Disk>
    </DiskConfiguration>
    </component>
    </settings>
    </unattend>
    $xml=[xml]$txt
    $nsmgr=New-Object System.Xml.XmlNamespaceManager($xml.NameTable)
    $nsmgr.AddNamespace('df','urn:schemas-microsoft-com:unattend')
    $parent=$xml.SelectSingleNode('//df:CreatePartition[./df:Order[text()=2]]',$nsmgr)
    $size=$xml.SelectSingleNode('//df:CreatePartition/df:Size[../df:Order[text()=2]]',$nsmgr)
    $parent.RemoveChild($size)
    ¯\_(ツ)_/¯

  • SSRS programmatically remove the unattended execution account

    Hi,
    Is there a way to programmatically remove the SSRS unattended execution account?
    In the
    Configuring the Unattended Execution Account article, the "How to Delete the Unattended Report Processing Account" section only list a manual step to do so.
    I also didn't find any terms that I could use with the rsconfig utility to do so, see
    rsconfig Utility.
    Thanks,
    Emmanuel

    Hi Emmanuel,
    When we set the account in SSRS, it will add specify Encrypted characters in the RSreportserver.config file. If we want to programmatically remove the SSRS unattended execution account, we need find a way to delete the corresponding Encrypted characters
    in the RSreportserver.config file.
    Based on my test, I cannot programmatically remove the Encrypted characters. As per my understanding, delete the unattended report processing account is a simple step in SSRS. The manual steps may be simpler than programmatically remove the account.
    Hope this helps.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Manual Removal of Office 2010 during Unattended 2013 install

    As I'm sure it has been discussed many times before, the Office 2013 OCT deployment does a horrible job removing all Office 2010 components properly.  Even with the option to "remove previous versions of Office before installing" selected,
    there will still be pieces of Office 2010 lingering behind.  It has been reported to me by our support department that this can randomly cause issues with Office 2013.
    In these cases, our support group must manually remove the Office 2010 remnants and run a manual repair of Office 2013. Not ideal on 1000 systems.
    To bypass all of this mess, I've attempted to add a command line via the Office Config Tool to remove Office 2010 as well as Lync 2010.  I have configured OCT to Run a batch file
    before installing Office2013 via the "Add installations and run programs" area.  The batch file has 2 lines.
    \\<server>\<share>\Office2010\Install\setup.exe /uninstall ProPlus /config \\<server>\<share>\silentuninstall.xml
    \\<server>\<share>\Lync2010\LyncSetup.exe /silent /uninstall
    Nothing too fancy here.  Note that this batch file works as intended if I manually run it from command line on a workstation. So, I know that all of these commands are good.  Also note, the sms installer account has access to the server and
    shares specified in my commands.
    This seems like it should be such an easy thing for OCT to pull off, but it just blows right by my batch file as if it doesn't exist. Am I missing something here?  What can I do in OCT to ensure that it doesn't ignore this command?
    Thanks,
    David

    I've seen this sort of query quite a few times over the past few months. The Office 2013 OCT tool does a fairly poor job removing previous Office versions.
    Your uninstall argument is probably failing because your referencing an xml file that resides on a server file share. Config Manager will execute your argument using the system account so its probably a permissions based issue. You can test this by running
    your uninstall argument using psexec which replicates this behavior.
    I've approached this issue in a different way - you may wish to look at this option instead?
    Microsoft have written some Office scrub vb script files to address the issue:
    http://blogs.technet.com/b/odsupport/archive/2011/04/08/how-to-obtain-and-use-offscrub-to-automate-the-uninstallation-of-office-products.aspx
    http://blogs.technet.com/b/odsupport/archive/2011/04/06/how-to-perform-an-uninstall-upgrade-to-office-2010.aspx
    http://marckean.wordpress.com/2013/06/18/fully-automate-removal-of-any-version-office-in-preparation-for-office-365/
    You could  use a batch file wrapper as your Office 2013 Configuration Manager install command – something like this would work:
    @echo off
    SET INSTALL=%~dp0
    :Remove Microsoft Office 2010 Suites
    Cscript “%INSTALL%\OffScrub10.vbs” ALL /Quiet /NoCancel
    :Install Microsoft Office 2013 Professional
    Setup.exe
    ping 127.0.0.1 -n 5 > nul
    Has worked well for me. Note that you would need to add an additional line to remove Lync 2010 - probably something like msiexec /x {YourLync2010GUID} /q would be best.
    Cheers
    Damon

  • Win 8.1 Metro apps re-installing after being removed from the reference image

    Scenario:
    MDT 2013 - Build reference image for Win 8.1 on hyper-v executing the following commands removing all metro apps.
    Powershell.exe -Command "&{Get-appxPackage -AllUsers | Remove-AppxPackage -ErrorAction SilentlyContinue}"Powershell.exe -Command "&{Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online -ErrorAction SilentlyContinue}"
    Install windows updates and perform sysprep and capture wim task
    Import Wim into Sccm 2012 r2 and deploy with standard mdt task
    Problem:
    After deployment all Metro apps are reinstalled or reinstalling.
    Notes:  Setting Copyprofile True is ignored and have tried various methods and it is always ignored.
    If I use the wim from sources\install.wim and I either dism /remove-appx... or powershell in win PE get-appx -path | Remove-appx...
    If that wim is modified and used then it deploys without the Metro apps but it doesnt have any windows updates.  If I use that wim to build the reference image it will have no metro apps but after capture and deploy through sccm the metro apps start
    to re-install.
    Below is the unattend.xml
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
    <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <Display>
    <ColorDepth>16</ColorDepth>
    <HorizontalResolution>1024</HorizontalResolution>
    <RefreshRate>60</RefreshRate>
    <VerticalResolution>768</VerticalResolution>
    </Display>
    <ComplianceCheck>
    <DisplayReport>OnError</DisplayReport>
    </ComplianceCheck>
    <UserData>
    <AcceptEula>true</AcceptEula>
    <ProductKey>
    <Key></Key>
    </ProductKey>
    </UserData>
    </component>
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SetupUILanguage>
    <UILanguage>en-US</UILanguage>
    </SetupUILanguage>
    <InputLocale>0409:00000409</InputLocale>
    <SystemLocale>en-US</SystemLocale>
    <UILanguage>en-US</UILanguage>
    <UserLocale>en-US</UserLocale>
    </component>
    </settings>
    <settings pass="generalize">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
    </component>
    </settings>
    <settings pass="specialize">
    <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <Identification>
    <Credentials>
    <Username></Username>
    <Domain></Domain>
    <Password></Password>
    </Credentials>
    <JoinDomain></JoinDomain>
    <JoinWorkgroup></JoinWorkgroup>
    <MachineObjectOU></MachineObjectOU>
    </Identification>
    </component>
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <ComputerName></ComputerName>
    <ProductKey></ProductKey>
    <RegisteredOrganization></RegisteredOrganization>
    <RegisteredOwner></RegisteredOwner>
    <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
    <TimeZone>Pacific Standard Time</TimeZone>
    <CopyProfile>true</CopyProfile>
    </component>
    <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Home_Page>http://www.microsoft.com/</Home_Page>
    <DisableWelcomePage>true</DisableWelcomePage>
    <DisableFirstRunWizard>false</DisableFirstRunWizard>
    </component>
    <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <RunSynchronous>
    <RunSynchronousCommand wcm:action="add">
    <Description>EnableAdmin</Description>
    <Order>1</Order>
    <Path>cmd /c net user Administrator /active:yes</Path>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Description>UnfilterAdministratorToken</Description>
    <Order>2</Order>
    <Path>cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v FilterAdministratorToken /t REG_DWORD /d 0 /f</Path>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Description>disable user account page</Description>
    <Order>3</Order>
    <Path>reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Setup\OOBE /v UnattendCreatedUser /t REG_DWORD /d 1 /f</Path>
    </RunSynchronousCommand>
    </RunSynchronous>
    </component>
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <InputLocale>0409:00000409</InputLocale>
    <SystemLocale>en-US</SystemLocale>
    <UILanguage>en-US</UILanguage>
    <UserLocale>en-US</UserLocale>
    </component>
    <component name="Microsoft-Windows-TapiSetup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <TapiConfigured>0</TapiConfigured>
    <TapiUnattendLocation>
    <AreaCode>""</AreaCode>
    <CountryOrRegion>1</CountryOrRegion>
    <LongDistanceAccess>9</LongDistanceAccess>
    <OutsideAccess>9</OutsideAccess>
    <PulseOrToneDialing>1</PulseOrToneDialing>
    <DisableCallWaiting>""</DisableCallWaiting>
    <InternationalCarrierCode>""</InternationalCarrierCode>
    <LongDistanceCarrierCode>""</LongDistanceCarrierCode>
    <Name>Default</Name>
    </TapiUnattendLocation>
    </component>
    <component name="Microsoft-Windows-SystemRestore-Main" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DisableSR>1</DisableSR>
    </component>
    </settings>
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <UserAccounts>
    <AdministratorPassword>
    <Value>QQBkAG0AaQBuAGkAcwB0AHIAYQB0AG8AcgBQAGEAcwBzAHcAbwByAGQA</Value>
    <PlainText>false</PlainText>
    </AdministratorPassword>
    </UserAccounts>
    <AutoLogon>
    <Enabled>true</Enabled>
    <Username>Administrator</Username>
    <Domain>.</Domain>
    <Password>
    <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>
    <PlainText>false</PlainText>
    </Password>
    <LogonCount>999</LogonCount>
    </AutoLogon>
    <Display>
    <ColorDepth>32</ColorDepth>
    <HorizontalResolution>1024</HorizontalResolution>
    <RefreshRate>60</RefreshRate>
    <VerticalResolution>768</VerticalResolution>
    </Display>
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <CommandLine>wscript.exe %SystemDrive%\LTIBootstrap.vbs</CommandLine>
    <Description>Lite Touch new OS</Description>
    <Order>1</Order>
    </SynchronousCommand>
    </FirstLogonCommands>
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Work</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    </OOBE>
    <RegisteredOrganization></RegisteredOrganization>
    <RegisteredOwner></RegisteredOwner>
    <TimeZone></TimeZone>
    </component>
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <InputLocale>0409:00000409</InputLocale>
    <SystemLocale>en-US</SystemLocale>
    <UILanguage>en-US</UILanguage>
    <UserLocale>en-US</UserLocale>
    </component>
    </settings>
    <settings pass="offlineServicing">
    <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DriverPaths>
    <PathAndCredentials wcm:keyValue="1" wcm:action="add">
    <Path>\Drivers</Path>
    </PathAndCredentials>
    </DriverPaths>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="catalog://sccm1/deploymentshare$/operating systems/windows 8.1 enterprise x64.1/sources/install_windows 8.1 enterprise.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

    Yes as I've removed it both via get-appxpackages | Remove-appxpackages and via the dism commands.
    I have found also that wasn't getting a good sysprep.  Problems with copy profile lead me to try doing a manual sysprep where I found I was getting failures in my sysprep. The problem was that I was disabling the windows store service in my reference
    image.  
    I was very hopeful that was going to be the resolution but it appears that is not the case.
    2014-09-26 07:15:03, Error SYSPRP WSLicenseCleanUpState failed with hr=c0020017
    2014-09-26 07:15:03, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing 'WSLicenseCleanUpState' from C:\Windows\System32\wsclient.dll; dwRet = 0xc0020017
    2014-09-26 07:15:03, Error SYSPRP ActionPlatform::ExecuteAction: Error in executing action; dwRet = 0xc0020017
    2014-09-26 07:15:03, Error SYSPRP ActionPlatform::ExecuteActionList: Error in execute actions; dwRet = 0xc0020017
    2014-09-26 07:15:03, Error SYSPRP SysprepSession::Execute: Error in executing actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0xc0020017
    2014-09-26 07:15:03, Error SYSPRP RunPlatformActions:Failed while executing SysprepSession actions; dwRet = 0xc0020017
    2014-09-26 07:15:03, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0xc0020017
    2014-09-26 07:15:03, Error [0x0f00a8] SYSPRP WinMain:Hit failure while processing sysprep generalize internal providers; hr = 0xc0020017

  • Acrobat 9 - Remove Serial number for image?

    Hi all,
    We are purchasing Dell PCs with OEM installations of Adobe Acrobat  Standard 9.  I am attempting to create an  image based on one of these machines, but I want to remove the Acrobat  Serial number, so when I push this image onto another machine, I can  enter the proper serial number for that machine.
    I know you can go into the registry and change the serial number, so I  tried to just delete the value from there.  However, when I did this  and start up Acrobat, it runs through the installation and the previous  serial number is back in it's place.  I found the serial number listed  in a "Repair" key as well and when I delete it from there, I have the  same result, with the exception of the registry values for the serial  number remain blank.  Surprisingly, Acrobat works fine even though it  appears (at least in the registry) that there is no serial number  associated with it.
    Can anyone help with this?
    Thanks!

    Can anyone help here?
    I've downloaded the Adobe Customization Wizard and set the user name, company name, etc. and left the serial number blank.  When I attempt to run an unattended installation, it fails with a dialog box that simply says "error."
    I changed to an interactive install to see if I could get any more information on when and where it was failing.  User and company name are filled in, as expected, but Serial Number is blank and I cannot advance without entering a Serial Number.  I assume this is also why the unattended installation is failing.
    How can I install without a serial number, so that I will be prompted for that upon first launch?

  • Adobe Acrobat X Unattended Install not working

    I created and Windows bundle to install Acrobat X via a custom msi and I removed the "qn" switch. I used the Acrobat customizer to customize the install, to include unattended install but show progress bar and prompt for reboot. If I run the file on a PC locally it works fine, but the bundle makes the user go through the dialog boxes with all the correct settings already in place. With the /qn it works. I want the users to see the progress. Yes, they're too dumb and/or lazy to use the Zenworks icon to check the progress.

    Change /qn to /qb+
    On 6/15/2011 3:36 PM, elphantasmo wrote:
    >
    > I created and Windows bundle to install Acrobat X via a custom msi and I
    > removed the "qn" switch. I used the Acrobat customizer to customize the
    > install, to include unattended install but show progress bar and prompt
    > for reboot. If I run the file on a PC locally it works fine, but the
    > bundle makes the user go through the dialog boxes with all the correct
    > settings already in place. With the /qn it works. I want the users to
    > see the progress. Yes, they're too dumb and/or lazy to use the Zenworks
    > icon to check the progress.
    >
    >
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Knowledge Partner
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • WDS: How to replace or remove a device GUID?

    We have a number of computers that are registered in WDS so they are auto-named when imaged. Though, as they age I am having to move hardware around to rapidly fix failed power supplies, etc.
    I've run into a problem, trying to reuse a computer that was used somewhere else, where it previously had its GUID registered, but now I need to assign its GUID to a different computer name in Active Directory, and I am not allowed to do it:
    wdsutil /set-device /device:EL900-MUSIC-D /id:4C4C4544-0032-3010-8053-C2C04F354A31
    WDSUTIL has detected duplicate GUIDs in Active Directory. The duplicate computers are:
    Name: E205-SB
    DN: CN=E205-SB,OU=Computers - EL Staff,DC=XXXX,DC=YYYYY,DC=ZZZZZZ
    MAC/GUID: 44454C4C320010308053C2C04F354A31
    Referral server:
    Boot program:
    WDS client unattend file:
    Boot image path:
    Join domain: Yes
    An error occurred while trying to execute the command.
    Error Code: 0xC1040134
    Error Description: A computer with the same GUID already exists.
    Looking through the commands for wdsutil, it is very odd because there is only a "/set-device" command. There is no "/replace-device" or "/replace-GUID" or "/delete-device" or "/delete-GUID" commands.
    So how do I remove or replace the GUID in the conflicting AD Computer object, without completely deleting the Computer object and rejoining the other machine to the domain? 

    Hi,
    The article described the reason that cause duplicate GUID and how to remove duplicate GUID:
    Managing Duplicate Microsoft Systems Management Server Unique Identifiers
    http://technet.microsoft.com/en-us/library/cc917513.aspx
    Hope this helps.

  • Removing useless contents of an unsorted text file in excel 2013

    hi friends
    i am new to excel & there is an urgent need for me, that's why i pose this question which may appear simple.
    in my server i have redirected the output of a command help into a text file (c:\myhelp.txt)
    i have pasted some initial lines of that text file here:
    The following is a list of unattend parameters for promotion (default values are enclosed in <>):
    /AllowDomainControllerReinstall:{Yes | <No> | NoAndNoPromptEither}
    Specifies whether to continue installing this domain controller despite that a domain controller account with the same name is detected. Specify Yes only if you are sure that the account is no longer in use.
    /AllowDomainReinstall:{Yes | <No> | NoAndNoPromptEither}
    Specifies whether an existing domain is recreated.
    /ApplicationPartitionsToReplicate:""
    Specifies application partitions to be replicated in the format of "partition1" "partition2". If * is specified, all application partitions will be replicated.
    now i need to import this text file into excel 2013 so that i be able to remove comments & descriptions ( in fact anything except command switches, which their characteristics is that they begin with an
    slash & there is no space between their words).
    in other words i need to preserver strings which start with an slash.
    for example i need only the following strings remain in the file:
    /AllowDomainControllerReinstall:
    /AllowDomainReinstall:
    /ApplicationPartitionsToReplicate:
    so that then i be able to export that file & then execute my command & specify the path to this answer file (c:\myhelp.txt)
    how can i achieve this in excel?
    can i easily do the entire process when importing that file into excel, using importing options? if not, how can i do that after opened in excel?
    in the following screenshots i have shown what import options i used when importing this help file into excel & the result:
    really thanks in advanced, i really need this help.

    Hi John,
    Bit unclear on your requirment.
    Let me put it this way.
    1.You are running some command which generates output c:\myhelp.txt in multiple lines.
    2. You want to reformat the contents of c:\myhelp.txt so that only parameter name remains in each line, without the values.
    3. Reuse the updated c:\myhelp-clean.txt file into some other script\command.
    I can help you with quick excel formatting on point 2.
    Points noted:- the parameter are seperated from the rest of the data by ":" colon
    Hence once data is opened in excel, use Text-Col ->Delimited->Other-> Type : (colon) as the delimitor.
    This will result in only the 1st column with the long text in some rows and /parameters seperated
    Then Select all the data in the first column, Filter->Drop Down, Text Filters->Begins with-> /
    Only text with the parameters remain, as desc rows don't have / in beginning.
    Copy this and save it in another text file for re-use.
    Regards,
    Satyajit
    Please“Vote As Helpful”
    if you find my contribution useful or “MarkAs Answer” if it does answer your question. That will encourage me - and others - to take time out to help you.
    Hi Satyajit.
    worked that's Great !
    thank you very very much for your great help
    best regards  ;-)

  • Unattend error

    The error:
    Could the answer file for unattended installation does not parse or process for phase [specialize]. A component or setting in the answer file does not exist.
    My OOBE unattend
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="specialize">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ComputerName>XXXX</ComputerName>
                <RegisteredOwner>XXX</RegisteredOwner>
                <ProductKey>XXXX-XXXX-XXXX-XXXX-XXXX</ProductKey>
            </component>
            <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Identification>
                    <JoinWorkgroup>XXXXXXXX</JoinWorkgroup>
                    <UnsecureJoin>true</UnsecureJoin>
                </Identification>
            </component>
            <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Accelerators>
                    <Accelerator wcm:action="add">
                        <AcceleratorXML>C:\Windows\Google.xml</AcceleratorXML>
                        <IsDefault>true</IsDefault>
                        <ItemKey>Google</ItemKey>
                    </Accelerator>
                    <Accelerator wcm:action="remove">
                        <ItemKey>Bing</ItemKey>
                    </Accelerator>
                </Accelerators>
                <BlockPopups>yes</BlockPopups>
                <CompanyName>xxx</CompanyName>
                <DisableAccelerators>true</DisableAccelerators>
                <DisableFirstRunWizard>true</DisableFirstRunWizard>
                <DisableOOBAccelerators>true</DisableOOBAccelerators>
                <Home_Page>xxx</Home_Page>
                <IntranetCompatibilityMode>false</IntranetCompatibilityMode>
                <ShowInformationBar>false</ShowInformationBar>
                <SuggestedSitesEnabled>false</SuggestedSitesEnabled>
                <TrustedSites>xxx</TrustedSites>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>en-US</InputLocale>
                <UILanguage>nl-NL</UILanguage>
                <UserLocale>nl-NL</UserLocale>
                <SystemLocale>nl-NL</SystemLocale>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                </OOBE>
                <RegisteredOwner>xxx</RegisteredOwner>
                <RegisteredOrganization>xxx</RegisteredOrganization>
                <ShowWindowsLive>false</ShowWindowsLive>
                <TimeZone>W. Europe Standard Time</TimeZone>
                <UserAccounts>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Description>XXX</Description>
                            <DisplayName>XXX</DisplayName>
                            <Group>Administrators</Group>
                            <Name>xxxx</Name>
                            <Password>
                                <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>
                                <PlainText>false</PlainText>
                            </Password>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <FirstLogonCommands>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>cmd /C wmic useraccount where Name=&apos;XXX&apos; set PasswordExpires=false</CommandLine>
                        <Description>Wachtwoord verloopt nooit</Description>
                        <Order>4</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>net user administrator /active:no</CommandLine>
                        <Description>Disable build-in administrator account</Description>
                        <Order>5</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <Order>3</Order>
                        <CommandLine>net user XXX /passwordreq:no</CommandLine>
                        <Description>Geen wachtwoord vereist</Description>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>net user XXX /passwordchg:no</CommandLine>
                        <Order>2</Order>
                        <Description>Gebruiker kan wachtwoord niet wijzigen</Description>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>cmd /C slmgr.vbs /ipk XXXX-XXXX-XXXX-XXXX-XXXX</CommandLine>
                        <Description>Windows activatiecode</Description>
                        <Order>7</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>cmd /C slmgr -ato</CommandLine>
                        <Description>Windows activeren</Description>
                        <Order>8</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>powercfg -s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c</CommandLine>
                        <Description>Energiebeheer aanpassen</Description>
                        <Order>6</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>netsh wlan add profile C:\Windows\xxx.xml user=all</CommandLine>
                        <Description>Wifi instellen</Description>
                        <Order>1</Order>
                    </SynchronousCommand>
                </FirstLogonCommands>
                <AutoLogon>
                    <Enabled>true</Enabled>
                    <LogonCount>1</LogonCount>
                    <Username>xxx</Username>
                    <Password>
                        <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>
                        <PlainText>false</PlainText>
                    </Password>
                </AutoLogon>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:d:/xxxxxx/install.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    My WDS answerfile
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="windowsPE">
            <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SetupUILanguage>
                    <UILanguage>nl-NL</UILanguage>
                </SetupUILanguage>
                <InputLocale>en-US</InputLocale>
                <SystemLocale>nl-NL</SystemLocale>
                <UserLocale>nl-NL</UserLocale>
            </component>
            <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DiskConfiguration>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Extend>false</Extend>
                                <Order>1</Order>
                                <Type>Primary</Type>
                                <Size>100</Size>
                            </CreatePartition>
                            <CreatePartition wcm:action="add">
                                <Extend>false</Extend>
                                <Type>Primary</Type>
                                <Order>2</Order>
                                <Size>40000</Size>
                            </CreatePartition>
                            <CreatePartition wcm:action="add">
                                <Order>3</Order>
                                <Type>Primary</Type>
                                <Extend>false</Extend>
                                <Size>2048</Size>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                                <TypeID>0x27</TypeID>
                                <Label>Door systeem gereserveerd</Label>
                            </ModifyPartition>
                            <ModifyPartition wcm:action="add">
                                <Format>NTFS</Format>
                                <Label>SYSTEM</Label>
                                <PartitionID>2</PartitionID>
                                <Order>2</Order>
                                <Letter>C</Letter>
                                <Active>true</Active>
                            </ModifyPartition>
                            <ModifyPartition wcm:action="add">
                                <Format>NTFS</Format>
                                <PartitionID>3</PartitionID>
                                <Letter>M</Letter>
                                <Order>3</Order>
                                <Label>DATA</Label>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <WillWipeDisk>true</WillWipeDisk>
                        <DiskID>0</DiskID>
                    </Disk>
                </DiskConfiguration>
                <WindowsDeploymentServices>
                    <ImageSelection>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>2</PartitionID>
                        </InstallTo>
                        <InstallImage>
                            <ImageName>Windows 7 Updates #10</ImageName>
                            <ImageGroup>Windows7</ImageGroup>
                            <Filename>install-(6).wim</Filename>
                        </InstallImage>
                    </ImageSelection>
                    <Login>
                        <Credentials>
                            <Domain>x.local</Domain>
                            <Password>x</Password>
                            <Username>Administrator</Username>
                        </Credentials>
                    </Login>
                </WindowsDeploymentServices>
                <UserData>
                    <ProductKey>
                        <Key>XXXX-XXXX-XXXX-XXXX-XXXX</Key>
                        <WillShowUI>OnError</WillShowUI>
                    </ProductKey>
                    <AcceptEula>true</AcceptEula>
                    <Organization>XXX</Organization>
                </UserData>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:d:/XXXXX/install.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

    Version 11
    Let me tell you guys something everything worked fine with IE and image. I also edited the component in IE disableaccelerators set false but still same error. I just added 2 accelerator components. And now it's messed up. I added empty string value to the
    Bing accelerator now im testing it out.
    <Accelerators>
                    <Accelerator wcm:action="add">
                        <AcceleratorXML>C:\Windows\Google.xml</AcceleratorXML>
                        <IsDefault>true</IsDefault>
                        <ItemKey>Google</ItemKey>
                    </Accelerator>
                    <Accelerator wcm:action="remove">
                        <ItemKey>Bing</ItemKey>
                    </Accelerator>
                </Accelerators>

  • WDS Client Naming Policy with image unattend mode problem

    I have created a standard Windows 7 Pro 64-bit PC for my company with all our applications installed and configured.  I used SYSPREP to generalize it and then used PXEBoot to capture this image to our WDS Server (which is the PDC).  I used WAIK
    to create the two required answer files, one for the WDS server and the PXE boot stage of deployment and another linked to the image that sets the region/keyboard/time zone and other simple settings.
    To test I've setup up Oracle VirtualBox and PXE booted it.  The PXE part works fine and the correct image begins to deploy.  However when using the image's answer file I get a random computer name generated and it fails to join the domain, when I
    don't use the image answer file I have to sit at the PC and set the region/keyboard/timezone etc settings from prompts on the screen but the virtual PC does join the domain and does pick up the correct name!
    The AD DS properties tab shows this as 'Client Naming Policy' FBCLIENT%02# which is correct and results in PCs called FBCLIENT01 FBCLIENT02 etc when NOT using the image answer file.
    How can I modify my image answer file so that the PC is joined to the domain and picks up the correct generated name in sequence?
    Here's my image answer file...
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="specialize">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ComputerName>*</ComputerName>
                <ProductKey>JXTG8-4MY4D-TXJQB-M492H-J4G77</ProductKey>
                <RegisteredOrganization>Fiona Bruce LLP</RegisteredOrganization>
                <RegisteredOwner>Fiona Bruce LLP</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <TimeZone>GMT Standard Time</TimeZone>
            </component>
            <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Identification>
                    <Credentials>
                        <Domain>fionabruce</Domain>
                        <Password>**REMOVED**</Password>
                        <Username>**Admin_User**</Username>
                    </Credentials>
                    <JoinDomain>fionabruce.local</JoinDomain>
                    <UnsecureJoin>true</UnsecureJoin>
                </Identification>
            </component>
            <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <RunSynchronous>
                    <RunSynchronousCommand wcm:action="add">
                        <Description>Enable local admin</Description>
                        <Order>1</Order>
                        <Path>net user LocalAdmin /active&gt;yes</Path>
                    </RunSynchronousCommand>
                </RunSynchronous>
            </component>
            <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipAutoActivation>true</SkipAutoActivation>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>en-GB</InputLocale>
                <SystemLocale>en-GB</SystemLocale>
                <UILanguage>en-GB</UILanguage>
                <UserLocale>en-GB</UserLocale>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <OOBE>
                    <HideEULAPage>false</HideEULAPage>
                    <HideWirelessSetupInOOBE>false</HideWirelessSetupInOOBE>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                </OOBE>
                <UserAccounts>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Password>
                                <Value>QQBkAG0AaQBuADIAMAAxADQAUABhAHMAcwB3AG8AcgBkAA==</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <Description>Local Admin</Description>
                            <DisplayName>LocalAdmin</DisplayName>
                            <Group>Administrators</Group>
                            <Name>LocalAdmin</Name>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <AutoLogon>
                    <Password>
                        <Value>QQBkAG0AaQBuADIAMAAxADQAUABhAHMAcwB3AG8AcgBkAA==</Value>
                        <PlainText>false</PlainText>
                    </Password>
                    <Enabled>true</Enabled>
                    <LogonCount>2</LogonCount>
                    <Username>LocalAdmin</Username>
                </AutoLogon>
                <FirstLogonCommands>
                    <SynchronousCommand wcm:action="add">
                        <Order>1</Order>
                        <CommandLine>cscript //b c:\windows\system32\slmgr.vbs /ipk JXTG8-4MY4D-TXJQB-M492H-J4G77</CommandLine>
                        <RequiresUserInput>false</RequiresUserInput>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <Order>2</Order>
                        <RequiresUserInput>false</RequiresUserInput>
                        <CommandLine>cscript //b c:\windows\system32\slmgr.vbs /ato</CommandLine>
                    </SynchronousCommand>
                </FirstLogonCommands>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim://fbserver01/masters/autoinstall/win7pro64bit.wim#Win7Pro64Bit" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    Phil Tyler

    Guys i have similar problem 
    but i wont the name of the machines to be chosen from the "CLIENT NAMING POLICY" in WDS 
    I have tried the below:
    i know that  <ComputerName>*</ComputerName>
    gives random names 
    and <ComputerName>%MACHINENAME%</ComputerName> gives the names of the machine already
    prestaged in AD.
    and if i dont put computername Tag at all in the XML file, it will prompt me to enter the computer name,
    and after the deployment the computer is loosing trust relationship with the DC
    can someone helps please, its kind of urgent  

  • Cannot install 1-Step RoboPDF NT-Driver: 126

    When trying to install RoboPDF 1-Step from the Trial.exe
    (RoboHelp) I'm getting an error during the installation.
    Like the subject says: Cannot install 1-Step RoboPDF
    NT-Driver: 126
    This is persistent. I uninstalled all of Robohelp and RoboPDF
    several times.
    My system is Windows XP SP2 with all patches.
    I'm clueless. I removed all traces of 1-Step-RoboPDF in the
    registry already to no avail.

    Welcome to the forum.
    How's your German?
    Click
    here.
    The only answer I can find is in German but hopefully someone
    can help you with that. Also Dirk Bock responded to that post on
    the German forum but he also hangs around here so perhaps he will
    see this and help you.
    Do you have admin rights on the PC to which you are trying to
    install? RH will install install without them but not work
    properly. Perhaps 1 Step will not install without those rights.
    Also, you have problems with the full version of 1 Step, then
    Customer Support will most likely upgrade you to FlashPaper which
    includes a PDF function.

  • Problems with 1-Step RoboPDF

    I am using RoboHelp X5. It seems I can't get RoboPDF to
    start. Neither can I uninstall it to reinstall it. I want to be
    able to directly generate PDF without going through Word first.
    I have the RoboHelp 6 upgrade, but I wanted to finish my
    current project before attempting the upgrade. Makes sense, right?
    But I heard generating PDF is much easier in 6 than in X5. Is this
    true? How difficult is the upgrade?
    Craig

    quote:
    Originally posted by:
    Peter Grainge
    The reason I asked was that some people have reported they
    cannot uninstall it because it does not appear in Add / Remove.
    When advised where it is, it then transpires that they had not seen
    it. Hence asking the what was happening. OK?
    If you want to remove manually that's up to you. If RH6 finds
    some trace, it is likely to refuse to install.
    Adobe are aware that there were problems with 1 Step so you
    might do better to get in touch with Tech Support.
    Oh good. I have already stumped the unofficial experts. Sigh.
    While RoboHelp functions just fine, RoboPDF has never functioned.
    And to make things even better, while RoboPDF installed, it will
    not run. Why? Because when I checked the shortcut's properties, and
    looked at the execution path, the path was incorrect. The path
    pointed to where the exe file was not. I have never seen that. It
    pointed to an empty folder. I searched for the exe file, found it,
    and corrected the path. Still no go. I think I will have to visit
    the guys over at Adobe, unless you folks have a brilliant idea.

  • Logon failed for the unattended execution account.

    Hi while am running my report it is throwing the below error.I have verified entire config file,
    And i have recently uninstall and install the Reporting services after installing this i have faced this error ,shell i need to remove any old files from the configmgr or what why it is not working.The follwg error  i have get while am running the report
    The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    Logon failure: unknown user name or bad password
    It will create any logfiles and entries  in the logfile Folder and There is no folder for rsConfig in the Root Folder,
    was it made any thing wrong or what give me the soluction
    Please give me the right soluction for this problem.

    Hi Ychinnari,
    According to your description, you comes across an error when you run a report.
    In your scenario, the issue could cause by the Execution Account you have configured in the Reporting Services Configuration Manager is not correct. Please go to Reporting Services Configuration Manager and connect to the report server instance, then open
    the Execution Account page, update the username and password for the execution account, finally, restart the Reporting Services for this instance.
    Since you mentioned you can’t find the log files, please check the server which has reporting server instance installed with this path: C:\Program Files\Microsoft SQL Server\<instance name>\Reporting Services\LogFiles to check the error log.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • OSD: unattend.xml in capture conflicts with unattend in deploy?

    Hi,
    We need to remove some Windows components in our capture, so we created a small unattend.xml for it.
    Now we deploy this capture and apply an xml which contains totally other settings but it fails.
    Please advise what best practises is: only 1 unattend.xml in deploy? Then components are installed which we don't want (like Media Center), if we use the unattend.xml in capture only, we lose flexibility: each change we need to capture the image again.
    J.
    Jan Hoedt

    If you want to remove Windows features, you could just use DISM:
    In WinPE phase, after Apply Operating System Image Step
    Add run command line step
    Commandline: cmd.exe /c dism.exe /image:%OSDTargetDrive%\ /disable-feature /featurename:MediaCenter /scratchdir:%OSDTargetDrive%\Windows\Temp /norestart
    Just make sure that you use %OSDTargetDrive% -variable in your Partition Disk 0 and Apply Operating System Image -steps.

Maybe you are looking for

  • IC Web Client ,(CRM 7.0) creation of Tech Master Data for IS Utilities

    Hi Experts, We have created & assigne d (UTIL_IC_REG) Business Role in our project. When I check the Technical Data option , it allows me to create ( Connection Object ,Premise & POD ) My question is how these objects are created. Is these object fir

  • Displaying artwork on ipod

    I have downloaded artwrok to i tunes and checked the box 'display album artwork on your ipod' However images appear on my p.c. but nothing appears on my ipod Any ideas?

  • Viewing new template in dreamweaver cs3 reverst to front page ??

    When i save a new template in Dreamweaver CS3 and then try to preview in IExploer it asks me "do you wnat to open or save this file? when i select either it reverst to my old MS Front Page editor

  • Two posts need to be moved.

    These two posts: Automator Find Text and Alert Really basic Applescript question - help please! in the Developer group should be moved to the OS X Technologies group. I reported the first one 3 days ago and the second one early this AM. Usually simpl

  • Receipt for device purchase

    Hellos. I'm trying to get my rebate for purchasing a Galaxy S5. Apparently, the order confirmation I got from buying it online wasn't good enough. I was told to log into my Verizon account, go to Documents and Receipts, and print that receipt. I trie