Update win of windows 7 use Microsoft Deployment Toolkit.

Hi all !
I have computers run winodows 7 join domain. Because security, I have disconnected internet of computer run windows 7 , never.
But, I want to automatic update win for windows 7. Can i  use Microsoft Deployment Toolkit to do it ?
So, Can you help me ?
Thanks and best regards .

The MDT ZTIWindowsUpdate.wsf script can automatically update your client machine. However it will require network access to update. BY default it will connect to the MIcrosoft Windows UPdate servers, or you can redirect the client machine to go to a local
WSUS (WIndows Server Update Services) Machine.
If you do not want to support any network access, you can manually add all updates as applications and install them manually via ZTIApplications.wsf
Keith Garner - keithga.wordpress.com

Similar Messages

  • MICROSOFT DEPLOYMENT TOOLKIT 2013 DO I NEED LICENSE TO INSTALL THIS SOFTWARE IN MY COMPUTER

    TO INSTALL MICROSOFT DEPLOYMENT TOOLKIT 2013  DO I NEED ANY MICROSOFT LICENSE,
    I HAVE WINDOWS 7 & 2008 R2 LICENSES.
    Many Thanks & Best Regards, K.SURESH

    Hello Suresh,
    MDT 2013, itself, doesn't require any license to install (apart from your OS license). Please see the below link:
    http://www.microsoft.com/en-in/download/details.aspx?id=40796
    if you plan to use MS System Center ZTI for deployment, then you would require a licensed system center installation (along with a licesnsed back end SQL installation). However, MDT won't require any license.
    Hope that answers you query. Please mark this as answer if it answers your query. Please upvote.
    Regards,
    Rajesh

  • Msi progress using Microsoft.Deployment.WindowsInstaller.

    Hi Everyone,
    In Windows application,  install msi in silent mode using Microsoft.Deployment.WindowsInstaller namespace in
    button click event. 
                string msiPackage = @"D:\MSI\feb20\Sample.msi";
                Installer.SetInternalUI(InstallUIOptions.Silent);
                Installer.InstallProduct(msiPackage, "REBOOT=R");
    When click button then msi install
    successfully and everything is working fine. So is it possible to "catch" progress
    using Microsoft.Deployment.WindowsInstaller namespace  and update a progressbar on my app? 
    So, is it possibile? Is there something we can do in C# or is it a very hard task that requires a lot of knowledge I don't have?
    Please help me regarding this.

    Hi
    Cheranarasu,
    After do some research.  there is a command-line options named
    Msiexec.exe. It's pretty useful to run msiexec with proper arguments to accomplish this task.
    Like the following cmd
    msiexec /i A:\Example.msi
    To use the administrative installation option
    In C#, we can use
    ProcessStartInfo Class to start.
    You can add flags to the MSIEXEC to control what type of installation you want -- such as whether it is silent, whether it displays a progress bar, whether UI is included, etc.
    For more detailed information, please refer to some similar threads as below.
    Progress bar on installing an external msi
    MsiExec progress catch
    How to interactive a silently installing msi? (Progress data and cancel it)
    You'll get more inspirations.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [SOLVED] - How to Rename a Win 7 Computer Using Powershell (deployment)

    For those who just want to know what I'm trying to do here's my question:
    How I can programmatically rename machines during the auditSystem/auditUser portion of Sysprep using PowerShell?
    What is the exact command and/or function should I be issuing?
    History:
    I've scoured the web for a while but unsuccessfully located what I was looking for.  I'm preparing a Windows 7 Enterprise x86 image for deployment, and I need to rename the machine to match our current PC name schema before it is joined to the domain. 
    I've managed to pull the information I needed to build the corret computer name thanks to Win32_BIOS.SerialNumber, Win32_ComputerSystem.Model and some IP<->Hashtable Array matching.  The next step is to actually rename the machine; This is
    where I'm having trouble.
    I found this code online :
    Function Rename-ComputerName ([string]$NewComputerName){
    $ComputerInfo = Get-WmiObject -Class Win32_ComputerSystem
    $ComputerInfo.rename($NewComputerName)}
    I also found
    this code online :
    function renameAndReboot([string]$computer, [string]$newname){
    $comp = gwmi win32_computersystem  -computer $computer
    $os   = gwmi win32_operatingsystem -computer $computer
    $comp.Rename($newname)
    $os.Reboot()}
    Unfortunately, neither work in PowerShell on my reference image PC running Windows 7.  (However the first one works in PowerShell on my XP Virtual PC.)
    The ReturnValue is 1326 when run on the Win 7 machine as the Administrator.  I'm not quite certain I understand what & why that fails or what exactly that code means.
    Moving on, I decided to go down the WMIC path instead:
     WMIC ComputerSystem where Name="%computername%" call Rename Name="$NewName"
    This works in CMD.exe on Windows XP and to my surprise, in CMD.exe on Windows 7 as well!  But, when run from PowerShell I get "Error: Invalid query".
    Thinking PowerShell might not like the CMD.exe %COMPUTERNAME% environment variable, I sprang for the PowerShell $env:computername environment variable instead:
     WMIC ComputerSystem where Name="$env:computername" call Rename Name="$NewName"
    That unfortunately results in an 'Unexpected switch at this level' error.
    Other suggestions I've seen online were to use netdom, but that's not part of the Win 7 install and since I've historically been able to do this through WMI calls, it should be possible to do this in Win 7, Vista, Server etc.
    I'm completely open to the idea that perhaps I'm doing something wrong.  If you have a tested solution, please share.

    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="generalize">
    <component name="Microsoft-Windows-Security-SPP" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SkipRearm>1</SkipRearm>
    </component>
    </settings>
    <settings pass="specialize">
    <component name="Microsoft-Windows-Deployment" processorArchitecture="x86" 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">
    <Order>1</Order>
    <Path>net user administrator /active:yes</Path>
    </RunSynchronousCommand>
    </RunSynchronous>
    </component>
    <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="x86" 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>
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <OEMInformation>
    <Manufacturer>Company Name</Manufacturer>
    <Model>Company Owned Hardware</Model>
    <SupportHours>Mon-Fri 8 AM - 8 PM Central Time; excluding Holidays</SupportHours>
    <SupportPhone>1-888-xxx-xxxx</SupportPhone>
    <SupportURL>http://our.support.url.information</SupportURL>
    <Logo>%WINDIR%\WallPapr2.bmp</Logo>
    </OEMInformation>
    <OEMWelcomeCenter>
    <link>http://our.helpdesk.information</link>
    </OEMWelcomeCenter>
    <ComputerName></ComputerName>
    <CopyProfile>true</CopyProfile>
    <ShowWindowsLive>false</ShowWindowsLive>
    <TimeZone>Central Standard Time</TimeZone>
    <ProductKey>FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4</ProductKey>
    </component>
    <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="x86" 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>domainname</Domain>
    <Password>password</Password>
    <Username>domainadmin</Username>
    </Credentials>
    <JoinDomain>domainname</JoinDomain>
    <MachineObjectOU>OU=OU Information,DC=com</MachineObjectOU>
    </Identification>
    </component>
    </settings>
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" 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>
    <SystemLocale>en-us</SystemLocale>
    <UILanguage>en-us</UILanguage>
    <UserLocale>en-us</UserLocale>
    <UILanguageFallback>en-us</UILanguageFallback>
    </component>
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <AutoLogon>
    <Password>
    <Value>encrypted info</Value>
    <PlainText>false</PlainText>
    </Password>
    <Enabled>true</Enabled>
    <LogonCount>3</LogonCount>
    <Username>administrator</Username>
    </AutoLogon>
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <CommandLine>%WINDIR%\Setup\Scripts\NewPC1.cmd</CommandLine>
    <Description>Change Machine Name and Reboot</Description>
    <Order>1</Order>
    <RequiresUserInput>false</RequiresUserInput>
    </SynchronousCommand>
    <SynchronousCommand wcm:action="add">
    <CommandLine>%WINDIR%\Setup\Scripts\NewPC2.cmd</CommandLine>
    <Order>2</Order>
    <RequiresUserInput>false</RequiresUserInput>
    <Description>More Cleanup Work</Description>
    </SynchronousCommand>
    </FirstLogonCommands>
    <OEMInformation>
    <Manufacturer>Company Name</Manufacturer>
    <Model>Company Owned Hardware</Model>
    <SupportHours>M-F, 8 am - 8 pm Central excluding Holidays</SupportHours>
    <SupportPhone>1-888-xxx-xxxx</SupportPhone>
    <SupportURL>http://our.support.url.information</SupportURL>
    </OEMInformation>
    <OEMWelcomeCenter>
    <link>http://our.helpdesk.information</link>
    </OEMWelcomeCenter>
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Work</NetworkLocation>
    <ProtectYourPC>3</ProtectYourPC>
    </OOBE>
    <UserAccounts>
    <AdministratorPassword>
    <Value>encrypted info</Value>
    <PlainText>false</PlainText>
    </AdministratorPassword>
    <LocalAccounts>
    <LocalAccount wcm:action="add">
    <Password>
    <Value>encrypted info</Value>
    <PlainText>false</PlainText>
    </Password>
    <Description>Local Administrator</Description>
    <DisplayName>Administrator</DisplayName>
    <Group>Administrators</Group>
    <Name>Administrator</Name>
    </LocalAccount>
    </LocalAccounts>
    </UserAccounts>
    <RegisteredOrganization>Company Name</RegisteredOrganization>
    <RegisteredOwner>Licensed CompanyEmployee</RegisteredOwner>
    <TimeZone>Central standard Time</TimeZone>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:location/of/install.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    Jnaas. My Answer file?
    I hope I didnt leave anything incriminating in that file...
    The product key is the generic one for Windows 7 to tell it to use the KMS server.

  • Deploying Adobe Reader using Microsoft Deployment tool 2013?

    I followed the instructions from:
    http://www.sysadminlab.net/other/modify-the-installation-of-adobe-reader-for-mdt-sccm-or-o ther-deployment
    and here:
    http://mdtguy.wordpress.com/2013/08/27/how-to-deploy-adobe-reader-xi-msi-with-mdt-2012/
    When I test my deployment it fails with MDT error 1624.  Accroding to Microsoft:
    ERROR_INSTALL_TRANSFORM_FAILURE                1624     Error applying transforms. Verify that                               the specified transform paths are valid.
    Which I have verfied.
    Is there a .msi file that I can edit rather than have to create on using the Customization Wizrd XI?
    I know this is off subject, but what do I edit in the flash player .msi file not to install mcafee?

    You can download the Adobe Reader MSI installers from ftp://ftp.adobe.com/pub/adobe/reader/win/
    The Flash Player MSI files (like the Adobe Reader MSI) do not contains any bundled 3rd-party software.

  • Microsoft Deployment Toolkit

    Hey everyone, Sorry if this is the wrong group to post in, It is about MDT.
    Can anyone tell me how I can create an image using a specific unattend.xml file?
    For instance, when MDT finishes dropping the image, applying settings, updates and Apps, How can i make it do:
    SYSPREP /OOBE /unattend:unattend.xml?

    Hello usgrcm,
    I am glad to hear that this issue is resolved.
    Thanks for your sharing.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Microsoft Deployment Toolkit - howto create one image to all computer type?

    Hi,
    I've got lots of computer with different motherboard socket.
    how to create one IMAGE to all computer type?
    thanks.

    HI
    Install MDT.
    Capture an Image with all updates and even software if you wish
    Upload to MDT
    Add required software in MDT
    Add Drivers
    Create a task sequence
    Important : In task sequence - Create w WMI query to find the model of the Hardware and deploy only the required drivers to it. So model based driver installation

  • Standalone Project/Visio 2013 package using Office Deployment Toolkit?

    Hello all,
    As per the title, is it possible to use ODT to produce standalone Project/Visio 2013 packages without Office in there? I've tried it couple of times now but it will always ended up having the rest of the office suite in there.
    Here's an example of the configuration.xml used:
    <Configuration>
    <Add SourcePath="C:\Temp\" OfficeClientEdition="32" >
        <Product ID="ProjectProVolume">
          <Language ID="en-us" />
        </Product>
    </Add>
    <Display Level="None" AcceptEULA="TRUE" />
    <Logging Path="%temp%" />
    <Property Name="AUTOACTIVATE" Value="1" />
    </Configuration>
    Any ideas? I've tried using the Sequencer to sequence Visio by itself but everytime it launches, the wizards will run on every launch even though I've already ran them once.
    Thanks in advance!

    No. You can restrict the application using the XML configuration.
    Steve Thomas, Senior Consultant, Microsoft
    App-V/MED-V/SCVMM/Server App-V/MDOP/AppCompat
    http://blogs.technet.com/gladiatormsft/
    The App-V Team blog: http://blogs.technet.com/appv/
    The MED-V Team Blog: http://blogs.technet.com/medv
    The SCVMM Team blog: http://blogs.technet.com/scvmm/
    “This posting is provided "AS IS" with no warranties, and confers no rights. User assumes all risks.”

  • Why does Firefox still tell me it's blocking Java Deployment Toolkit after I did the update?

    On the "Mozilla - Check Your Plugins" webpage, I was told that the " Java Deployment Toolkit" was vulnerable. So I did the update. But afterwards I was still told the same problem. Why? And should I care?
    Please see the attached screenshot.
    The funny thing is... I visited two sites that use Java, one being Java.com, but I did not see the black banner message of blocking.

    The Java Deployment Toolkit may be the latest version, but Oracle still hasn't fixed the security faults with that plugin; so Mozilla still has it on the Blocklist and disables it so far as to require the user to use "Ask to Activate". ''A "soft-block" - usable if needed, but needs user-action per implementation''.
    Specifically, do you have a program on your PC that actually needs that Deployment Toolkit?
    Or is your concern merely that it is disabled after updating Java?
    Very few consumer applications even use that Deployment Toolkit, which is intended for people who develop Java applications or who use applications such as various Oracle programs in the workplace.
    Going back to before Oracle bought out Sun Systems Java in 2010, that Deployment Toolkit wasn't being installed with the Java Runtime Environment for users. Java developers had to install a separate Developers Toolkit to get that Plugin - the SDK program had it.

  • Pop up using PL SQL Toolkit

    Hello there :
    Is there any way we can create a pop-up window using PL/SQL Toolkit.
    Thanks for the help.
    Regards,
    Mohit

    using ApEx forum may be more efficient for PL/SQL Toolkit -> Oracle Application Express (APEX)

  • SCUP - Deploy Updates for both Windows 7 and Windows 8.1 rules Detection

    Hi all,
    I encounter a little issue regarding the update deployment from SCUP.
    For example, I would like to deploy Firefox updates on both Windows 7 and Windows 8.1. Firefox Updates are deployed and installed on Windows 7 without any problem. But Nothing happen on Windows 8.1.
    I think my problem is on my Installable Rule I have created. As it's not possible to select Windows 8.1 as a condiftion (like Windows 7) I have created a WMI query.
    Before using a WMI query, I tried to use Major version and Minor version without success.
    Does anyone has already used this sort of scenario ?

    Shouldn't you do the following things (see also:
    http://technet.microsoft.com/en-us/library/hh134743.aspx):
    Add Windows Language is French to the top AND;
    Change the second AND to an OR;
    Add the WMI Query to the new OR (so it's at the same level as the
    Windows Version = Windows 7 SP1);
    Remove the last OR (as it's not being used anymore).
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Firefox 3.6.6 Not Displaying Gmail Contacts & Calendar and at least 1 other website correctly after using Microsoft Windows Easy Transfer

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    In migrating from an XP PC to a new Win 7 PC, I downloaded Firefox to the new PC and it worked fine - got my Gmail contacts, calendar, etc. Later I used Micros Soft's Windows Easy Transfer to move data, profiles, etc to the new PC. Then could log onto Gmail but it would not show Contacts or Calendar. I then uninstalled Firefox and reinstalled it - nohelp, then I did a system to Restore to before I did the Windows Easy Transfer - no help, then I manually moved my Firefox Profile from the XP machine - no help. BTW at least one other website does not display correctly: http://www.hollandamerica.com/main/Main.action. NOTE - through all this Internet Explorer has shown these sites correctly.
    == This happened
    ==
    Every time Firefox opened
    == Used Microsoft Windows Easy Transfer
    ==
    == Troubleshooting information
    ==
    Troubleshooting Information
    This page contains technical information that might be useful when you're
    trying to solve a problem. If you are looking for answers to common questions
    about Firefox, check out our support web site.
    Copy all to clipboard
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Flashblock 1.5.13 true {3d7eb24f-2740-49df-8937-200b1cc08f8a}
    Google Notebook 1.0.0.22 false [email protected]
    Microsoft .NET Framework Assistant 1.2.1 true {20a82645-c095-46ed-80e3-08825760534b}
    PDF Download 3.0.0.1 false {37E4D8EA-8BDA-4831-8EA1-89053939A250}
    Java Console 6.0.20 true
    McAfee SiteAdvisor 3.0 true
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar 0
    browser.history_expire_days 20
    browser.history_expire_days.mirror 20
    browser.places.importBookmarksHTML false
    browser.places.importDefaults false
    browser.places.leftPaneFolderId -1
    browser.places.migratePostDataAnnotations false
    browser.places.smartBookmarksVersion 2
    browser.places.updateRecentTagsUri false
    browser.startup.homepage https://mail.google.com/mail/?shva=1#contacts
    browser.startup.homepage_override.mstone rv:1.9.2.3
    browser.tabs.loadInBackground false
    dom.disable_window_move_resize true
    dom.event.contextmenu.enabled false
    extensions.lastAppVersion 3.6.3
    general.useragent.extra.microsoftdotnet ( .NET CLR 3.5.30729)
    network.cookie.lifetimePolicy 1
    network.cookie.prefsMigrated true
    network.image.imageBehavior 0
    places.last_vacuum 1273287748
    print.print_printer HP Photosmart C7100 series
    print.printer_HP_OfficeJet_Pro_1170Cse.print_bgcolor false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_bgimages false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_command
    print.printer_HP_OfficeJet_Pro_1170Cse.print_downloadfonts false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_evenpages true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_footercenter
    print.printer_HP_OfficeJet_Pro_1170Cse.print_footerleft &PT
    print.printer_HP_OfficeJet_Pro_1170Cse.print_footerright &D
    print.printer_HP_OfficeJet_Pro_1170Cse.print_headercenter
    print.printer_HP_OfficeJet_Pro_1170Cse.print_headerleft &T
    print.printer_HP_OfficeJet_Pro_1170Cse.print_headerright &U
    print.printer_HP_OfficeJet_Pro_1170Cse.print_in_color true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_bottom 0.3
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_left 0.5
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_right 0.3
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_top 0.3
    print.printer_HP_OfficeJet_Pro_1170Cse.print_oddpages true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_orientation 0
    print.printer_HP_OfficeJet_Pro_1170Cse.print_pagedelay 500
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_data 1
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_height 11.00
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_size 1634485807
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_size_type 0
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_size_unit 0
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_width 8.50
    print.printer_HP_OfficeJet_Pro_1170Cse.print_printer HP OfficeJet Pro 1170Cse
    print.printer_HP_OfficeJet_Pro_1170Cse.print_reversed false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_scaling 1.00
    print.printer_HP_OfficeJet_Pro_1170Cse.print_shrink_to_fit true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_to_file false
    print.printer_HP_Photosmart_C7100_series.print_bgcolor false
    print.printer_HP_Photosmart_C7100_series.print_bgimages false
    print.printer_HP_Photosmart_C7100_series.print_command
    print.printer_HP_Photosmart_C7100_series.print_downloadfonts false
    print.printer_HP_Photosmart_C7100_series.print_edge_bottom 0
    print.printer_HP_Photosmart_C7100_series.print_edge_left 0
    print.printer_HP_Photosmart_C7100_series.print_edge_right 0
    print.printer_HP_Photosmart_C7100_series.print_edge_top 0
    print.printer_HP_Photosmart_C7100_series.print_evenpages true
    print.printer_HP_Photosmart_C7100_series.print_footercenter
    print.printer_HP_Photosmart_C7100_series.print_footerleft &PT
    print.printer_HP_Photosmart_C7100_series.print_footerright &D
    print.printer_HP_Photosmart_C7100_series.print_headercenter
    print.printer_HP_Photosmart_C7100_series.print_headerleft &T
    print.printer_HP_Photosmart_C7100_series.print_headerright &U
    print.printer_HP_Photosmart_C7100_series.print_in_color true
    print.printer_HP_Photosmart_C7100_series.print_margin_bottom 0.300000011920929
    print.printer_HP_Photosmart_C7100_series.print_margin_left 0.5
    print.printer_HP_Photosmart_C7100_series.print_margin_right 0.300000011920929
    print.printer_HP_Photosmart_C7100_series.print_margin_top 0.300000011920929
    print.printer_HP_Photosmart_C7100_series.print_oddpages true
    print.printer_HP_Photosmart_C7100_series.print_orientation 0
    print.printer_HP_Photosmart_C7100_series.print_pagedelay 500
    print.printer_HP_Photosmart_C7100_series.print_paper_data 1
    print.printer_HP_Photosmart_C7100_series.print_paper_height 11.00
    print.printer_HP_Photosmart_C7100_series.print_paper_size 1634485807
    print.printer_HP_Photosmart_C7100_series.print_paper_size_type 0
    print.printer_HP_Photosmart_C7100_series.print_paper_size_unit 0
    print.printer_HP_Photosmart_C7100_series.print_paper_width 8.50
    print.printer_HP_Photosmart_C7100_series.print_reversed false
    print.printer_HP_Photosmart_C7100_series.print_scaling 0.80
    print.printer_HP_Photosmart_C7100_series.print_shrink_to_fit false
    print.printer_HP_Photosmart_C7100_series.print_to_file false
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_bottom 0
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_left 0
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_right 0
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_top 0
    print.printer_hp_psc_1200_series.print_bgcolor false
    print.printer_hp_psc_1200_series.print_bgimages false
    print.printer_hp_psc_1200_series.print_command
    print.printer_hp_psc_1200_series.print_downloadfonts false
    print.printer_hp_psc_1200_series.print_evenpages true
    print.printer_hp_psc_1200_series.print_footercenter
    print.printer_hp_psc_1200_series.print_footerleft &PT
    print.printer_hp_psc_1200_series.print_footerright &D
    print.printer_hp_psc_1200_series.print_headercenter
    print.printer_hp_psc_1200_series.print_headerleft &T
    print.printer_hp_psc_1200_series.print_headerright &U
    print.printer_hp_psc_1200_series.print_in_color true
    print.printer_hp_psc_1200_series.print_margin_bottom 0.3
    print.printer_hp_psc_1200_series.print_margin_left 0.5
    print.printer_hp_psc_1200_series.print_margin_right 0.3
    print.printer_hp_psc_1200_series.print_margin_top 0.3
    print.printer_hp_psc_1200_series.print_oddpages true
    print.printer_hp_psc_1200_series.print_orientation 0
    print.printer_hp_psc_1200_series.print_pagedelay 500
    print.printer_hp_psc_1200_series.print_paper_data 1
    print.printer_hp_psc_1200_series.print_paper_height 11.00
    print.printer_hp_psc_1200_series.print_paper_size 1634485807
    print.printer_hp_psc_1200_series.print_paper_size_type 0
    print.printer_hp_psc_1200_series.print_paper_size_unit 0
    print.printer_hp_psc_1200_series.print_paper_width 8.50
    print.printer_hp_psc_1200_series.print_reversed false
    print.printer_hp_psc_1200_series.print_scaling 1.00
    print.printer_hp_psc_1200_series.print_shrink_to_fit true
    print.printer_hp_psc_1200_series.print_to_file false
    privacy.clearOnShutdown.cookies false
    privacy.clearOnShutdown.downloads false
    privacy.clearOnShutdown.formdata false
    privacy.clearOnShutdown.history false
    privacy.clearOnShutdown.passwords true
    privacy.cpd.cookies false
    privacy.cpd.downloads false
    privacy.cpd.formdata false
    privacy.cpd.history false
    privacy.item.downloads false
    privacy.item.formdata false
    privacy.item.history false
    privacy.item.passwords true
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.promptOnSanitize false
    privacy.sanitize.sanitizeOnShutdown true
    security.warn_viewing_mixed false
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-Default Plug-in
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Shockwave Flash 10.0 r45
    *McAfee Virtual Technician plugin for Mozilla (Gecko Version: 1.8b1)
    *3.0.50106.0
    *NPWLPG
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Adobe PDF Plug-In For Firefox and Netscape

    Oops - for some reason, this problem now seems to have gone away. May have had something to do with Flash. I'll keep my fingers crossed.

  • Can't install Win 8 updates - Failure Configuring Windows

    Win 8, 32bit
    There is no way I can go through an update I keep getting a "failed "message after attempting installation. On reboot the comp hangs when trying to configure and I have to reboot which ultimately gives the message "failure configuring windows update, reverting
    changes, do not turn off your computer. I also tried to install multiple updates manually and I get the same problem every single time.
    My Win 8 install was an upgrade from Win7.
    I'm really stuck and would appreciate your help.Arturo
    Arturo

    Hi,
    Also you can try these tests:
    1
    Download and install the System Update Readiness tool: http://support.microsoft.com/kb/947821
    2 Reset Windows Update components:
    http://support.microsoft.com/kb/971058
    Hope that helps.
    Regards,
    Leo  
    Huang
    Leo Huang
    TechNet Community Support

  • WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?

    WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?
    I have installed KB2734608, but when I search MS13-101 , no patch for Win 2012.
    Can you help me resolve this problem ?
    Thanks

    On Thu, 10 Apr 2014 06:01:48 +0000, fujitsu08 wrote:
    WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?
    WSUS has its own, dedicated forum where the WSUS experts answer questions.
    You should repost your question here:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverwsus
    Paul Adare - FIM CM MVP
    Aibohphobia: n. Fear of Palindromes

  • Enable Microsoft Update (not just Windows Update) for Windows 2008 R2

    I am running Windows 2008 R2 in my Citrix XenApp 6.5 farm.
    Office 2013 is installed.
    I can't update Office via Windows Update. Why? Take a look at this ridiculous roundabout tautology it takes me through.
    Here I am in the Windows Update panel:
    If I click "Find out more" to get updates for other Microsoft Updates it takes me here:
    Yeah, duh, I was just in there when I clicked the link to get to this site. What's the deal?
    How does one enable all Microsoft Updates for a Windows 2008 server. I can do this in 2003 easily by going to the Microsoft Update website. 2008 however, this appears to be impossible and apparently no one else in the world has noticed this.

    these discussions should help:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/80fa1086-3fd2-4bdd-a3bd-9af11c3d555b/can-i-force-windows-update-to-receive-updates-for-windows-and-other-products-using-group-a-policy?forum=winserverGP
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/c4f629fe-c447-4724-a3d9-e891ada9f334/windows-7-windows-update-get-updates-for-other-microsoft-products?forum=winserverGP
    http://social.technet.microsoft.com/Forums/windows/en-US/153b7ba7-e5b5-4c3a-af07-23c7980f79ea/cant-get-windows-update-to-download-updates-for-other-ms-products?forum=w7itproinstall
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

Maybe you are looking for

  • I cannot select anything with the trackpad on my Macbook 7,1

    My 6-month-old son was playing an online baby game but got some saliva on the trackpd.  It seemed to be very little and I wiped it up quickly.  However, after cleanup, the mouse was barely moving and erratic.  I shutdown for a day and on powerup the

  • SQL Developer Data Modeler 2.0.0 - Licensing  Terms?

    Hi Sue & Co. I just downloaded SQL Developer Data Modeler 2.0.0. Very cool. Any news regarding the Licensing terms? Cheers, Patrick

  • Can we call a report on the 'SAVE' icon ?

    Hello, I want to call a report when i hit the 'SAVE' icon on,lets say 'Create Sales Order screen' or  FB60 .. how can i do that ?  please guide me Thanks... Shehryar

  • Getting XML from Five Different Oracle Tables

    I need to get xml like <dataset code="123" title="" pubcode="456" minrows="0">     <schema code="s1" /> <!-- can be one -->     <rowset code="rs1" /> <!-- can be one -->     <sorter>         <!-- field can be MORE than one -->         <field name="fi

  • Network issues with Apple products?

    I've got a weird issue with my Apple products connecting to certain networks. Two different instances: 1) My parents house, my iPhone, iPad, and MacBook Pro all have issues in contacting certain sites and apps. Things from google or apple servers won