Restart computers via GPO

Hello all,
I would like to do restart all our lab computers (joined into domain) daily at 23:59. Is there anyway I can schedule the script via GPO ? My domain controller in on windows 2003 ent server.
Throw your ideas or point me in right direction how to achieve this.
Madal

 
Hello Madal,
Thank you for your reply.
“Is there a way to encrypt the password ?”
 Based on my research, you can create a “Schtasks Helper script” and “Encode” it to improve security as described in the following example:
1. On this share create a VBS file called Schtasks.vbs with the following code:
Schtasks.vbs
set shell=wscript.createobject("Wscript.shell")
shell.run "schtasks /create /ru <administrator> /rp <password> /sc dialy /st 23:59:00 /tn shutdown /tr \\servershare\shutdown.bat”
shutdown.bat
shutdown /t 0 /r
2. Download the Windows Script Encoder from:
http://www.microsoft.com/downloads/details.aspx?FamilyID=e7877f67-c447-4873-b1b0-21f0626a6329&displaylang=en&Hash=2eeLrR1Fo%2bgy0pOMTILIDCo2B6FWF5ncnlQW61ur2UdX0K7ZsIKKjttmjR%2bpFX5MMlQ4EW7GWRIwNA%2f4WFS0rw%3d%3d
3. Encrypt the original .vbs file:
screnc original_vbs_file.vbs vbs_encrypted_file.vbe
The script encoder is a command-line tool that allows a scriptwriter to protect the contents of a script from unauthorized copies or modifications while (at the same time) allowing the script to run.
Disclaimer
This sample script is not supported under any Microsoft standard support program or service. The sample script is provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event shall Microsoft, its authors, or anyone else involved in the creation, production, or delivery of the scripts be liable for
any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or documentation, even if Microsoft has been advised of the possibility of such damages
Actually, I also agree with Darren. You may use Group Policy Preferences to achieve the goal. It is a feature new in Microsoft Windows Server 2008. Group Policy preferences include mapped drives, scheduled tasks, and Start menu settings. For many types of operating system and application settings, using Group Policy preferences is a better alternative to configuring them in Windows images or using logon scripts. In fact, the new policy features in GPP support XP, Server 2003, Vista and Server 2008 “clients”. In order for clients to process GPP policy settings, they must install the GPP Client Side Extension (CSE) package, which is available from following site.
Group Policy Preference Client Side Extensions for Windows XP
http://www.microsoft.com/downloads/details.aspx?familyid=E60B5C8F-D7DC-4B27-A261-247CE3F6C4F8&displaylang=en
For more details, you can download Group Policy Preferences Overview
http://www.microsoft.com/downloads/details.aspx?FamilyID=42e30e3f-6f01-4610-9d6e-f6e0fb7a0790&DisplayLang=en
regards,Nick Gu - MSFT

Similar Messages

  • How to install MSP on selected computers via GPO Startup VBscript

    Hi folks,
    I'm trying to write a vbscript that will run on startup and do the following:
    1) Detect whether or not a particular application is installed
    2) Determine if the latest version of said application is installed
    3) If not, run the MSP update from a server and apply the patch before login.
    I'm on a domain, and the script works when manually run from a command prompt.  I also have the script added to a test GPO under Computer Config>Windows Settings>Startup, but since this is my first real attempt at scripting, I'm not sure how to
    determine why the *.MSP file isn't running and get this working.
    Here's my code so far:
    Const HKLM = &H80000002 'HKEY_LOCAL_MACHINE
    strComputer = "."
    strKey = "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\"
    strEntry1a = "DisplayName"
    strEntry1b = "QuietDisplayName"
    strEntry1c = "DisplayVersion"
    strEntry1d = "UninstallString"
    ' Set args = Wscript.Arguments ' Get Command Line Argument
    ' strVersion = WScript.Arguments.Item(0)
    Set objReg = GetObject("winmgmts://" & strComputer & "/root/default:StdRegProv")
    objReg.EnumKey HKLM, strKey, arrSubkeys
    intVersionNum="1.0"
    For Each strSubkey In arrSubkeys
    intRet1 = objReg.GetStringValue(HKLM, strKey & strSubkey, strEntry1a, strValue1)
    if intRet1 <> "" Then
    objReg.GetExpandedStringValue HKLM, strKey & strSubkey, strEntry1a, strValue1
    intCompare=StrComp("Adobe Acrobat XI Pro",strValue1,vbTextCompare)
    IF intCompare = 0 THEN
    objReg.GetExpandedStringValue HKLM, strKey & strSubkey, strEntry1c, intVersionNum
    END IF
    End If
    Next
    IF intVersionNum="1.0" THEN
    WScript.Quit 2 ' Not Found
    END IF
    intVersionCompare=StrComp("11.0.06",intVersionNum,vbTextCompare)
    IF intVersionCompare = 0 THEN ' Everything OK
    WScript.Quit 0
    ELSE ' Run Update
    Set oShell = WScript.CreateObject("WSCript.shell")
    oShell.run "msiexec.exe /update \\RedactedServer\gpo\Acrobat\AcrobatXIPro\AcrobatUpd11006.msp /quiet"
    WScript.Quit 1
    END IF
    Note: RedactedServer isn't a variable; I removed our servername.  Also, I'm reasonably certain there isn't a permissions issue because we use the \\RedactedServer\GPO\ to successfully deliver all of our MSI GPO updates.
    When I restart, it looks like the script starts to run(?), but the update isn't installed.  In the Application log, all I see is this:
    But, there's no follow-up entry indicating that it was successful or even completed.
    Ideally, I'd also like to be able to pass in a command line parameter from the GPO so I can update it without having to edit the script every time a new update comes out, but I'd prefer to run before I fly.
    Lastly, yes, the script is looking for Adobe Acrobat XI Pro.  I'm aware I can slipstream the MSP into an AIP and push it that way, but I don't want to redeploy a 2.3 GB installation to each computer that needs an update every 3 months when this will
    accomplish the goal much quicker and more efficiently.
    Does anyone have ideas?  I've beat my head against this all day, and my search-fu doesn't seem to be helping me find the answers I need.
    Thanks,
    Rick

    Microsoft note that Office 2013 cannot be installed by Software Distribution.  The MSP you have is a patch file.  The script is a cleaner.
    I do not know what is waiting for what or what script you may be referring to.
    If you think it is fixed then good but I do not really understand what you are saying has worked.
    ¯\_(ツ)_/¯

  • Installing Chrome via GPO

    Hi! I've been working on trying to install Chrome to all Domain Computers via GPO by following this link and cannot figure out what I've been doing wrong but it's not installing on any machine. Can someone tell me if something is missing from these instructions?
    http://www.techrepublic.com/blog/google-in-the-enterprise/install-chrome-via-gpo-and-save-yourself-some-time/

    Hi Lynnette74,
    Based on my understanding, you would like to deploy Chrome to all Domain Computers via GPO. Right?
    It would help us to narrow down the cause of this issue if you could provide the following information:
    Did this issue occur in one computer or several computers? This step is to check the cause of this issue is the process of deployment or the installation.
    Do this issue still occur when you manually install this software in this computer? This step is to check if the installation package cause this issue. If you can manually install
    this software successfully, then the deployed installation package may be broken during the deployment. If not, the cause may be the computer or the software, such as compatibility, account permission and so on.
    In addition, you can follow the steps below to check if the GPO is applied to these clients:
    Click
    Start, type rsop.msc in the search box to access
    Resultant set of policy.
    Check if the GPO is applied to these clients and the setting of the GPO is correct.
    For your information, please refer to the following article to learn more about the software deploment via GPO:
    http://support.microsoft.com/kb/816102/en-us
    Regards,
    Lany Zhang

  • Error at RSOP while trying to set Audit settings via GPO

    Hello,
    i've configured Audit Policy via GPO and when i run RSOP on the server 2008 R2 i get X with the error "the policy engine did not attempt to configure the setting For more
    information, see %windir%\security\logs\winlogon.log on the target machine.
    Please help???

    Hi,
    This problem may occur if the "Force audit policy subcategory settings (Windows Vista or later) to override audit policy category settings" policy setting is enabled. To resolve this issue, use one of the following methods, as appropriate for your situation.
    Method 1: Disable the policy setting by using Group Policy Object Editor
    Computer Configuration\Windows Settings\Security Settings\Local Policies\Security Options\Audit: Force audit policy subcategory settings (Windows Vista or later) to override audit policy category settings
    Method 2: Disable the policy setting by using Registry Editor
    Note: Please backup the registry key before modify.
    1.Locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\LSA
    2.Right-click SCENoApplyLegacyAuditPolicy, and then click Modify.
    3.Type 0 in the Value data box, and then click OK.
    Restart the computer after you make the change.
    For more information, please refer to:
    Security auditing settings are not applied to Windows Vista-based and Window Server 2008-based computers when you deploy a domain-based policy
    http://support.microsoft.com/kb/921468/en-us
    RSOP: the policy engine did not attempt to configure the setting
    http://social.technet.microsoft.com/Forums/en-AU/winserverGP/thread/fde42cfc-bb74-4e11-8b60-c1a3cb5d80ed
    If the problem still continues, please check the %windir%\security\logs\winlogon.log and reply the information in this log.
    Regards,
    Bruce

  • Difficulties installing flash player via GPO

    Hello, I'm attempting to try and deploy flash player via GPO to computers on our domain, and in testing, I am unable to get the MSI's to install after doing a gpupdate and letting the PC restart as it requests.
    I've followed the instructions Adobe has listed for deploying to AD via GPO to the letter, I have the shares on a publicly accessible location, the software assigned in the GPO, and the GPO linked to my testing container with the testing PCs. All the PCs are fully patched,  just nothing happens after a reboot. I can publish the MSI's just fine to where I can see them available to install via GPO, but I want to assign them instead. Does anyone have some insights into what could be going wrong?

    I'm still not having any luck with this, does anyone have any advice at all?

  • Indesign CS6 won't install on Windows 7 64bit via GPO

    Good afternoon,
    I created a installation of Indesign CS6 with application manager enterprise 3 to deploy to computers via the active directory.
    It installs correctly without issue to Windows XP x86 machines however won't install to Windows 7 x64 machines.
    When the computers starts it trys to install but fails and proceeds to the login screen.  The following information is left in the Windows event log.
    Has anyone else had this problem and more importantly know how to solve it?
    Log Name:      System
    Source:        Microsoft-Windows-GroupPolicy
    Date:          13/08/2013 9:44:23 AM
    Event ID:      1085
    Task Category: None
    Level:         Warning
    Keywords:     
    User:          SYSTEM
    Computer:      WIN7TEST
    Description:
    Windows failed to apply the Software Installation settings. Software Installation settings might have its own log file. Please click on the "More information" link.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-GroupPolicy" Guid="{AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9}" />
        <EventID>1085</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>1</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2013-08-12T23:44:23.375831000Z" />
        <EventRecordID>9482</EventRecordID>
        <Correlation ActivityID="{B74A3709-81F6-4B73-AA1F-9B610874B7EA}" />
        <Execution ProcessID="384" ThreadID="1324" />
        <Channel>System</Channel>
        <Computer>WIN7TEST</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="SupportInfo1">1</Data>
        <Data Name="SupportInfo2">3961</Data>
        <Data Name="ProcessingMode">1</Data>
        <Data Name="ProcessingTimeInMilliseconds">41590</Data>
        <Data Name="ErrorCode">1603</Data>
        <Data Name="ErrorDescription">Fatal error during installation. </Data>
        <Data Name="DCName">\\AYR.burdekin.qld.gov.au</Data>
        <Data Name="ExtensionName">Software Installation</Data>
        <Data Name="ExtensionId">{c6dc5466-785a-11d2-84d0-00c04fb169f7}</Data>
      </EventData>
    </Event>
    Log Name:      System
    Source:        Application Management Group Policy
    Date:          13/08/2013 9:44:23 AM
    Event ID:      108
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          SYSTEM
    Computer:      WIN7TEST
    Description:
    Failed to apply changes to software installation settings.  Software changes could not be applied.  A previous log entry with details should exist.  The error was : %%1603
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Management Group Policy" />
        <EventID Qualifiers="0">108</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-08-12T23:44:23.000000000Z" />
        <EventRecordID>9481</EventRecordID>
        <Channel>System</Channel>
        <Computer>WIN7TEST</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data>Software changes could not be applied.  A previous log entry with details should exist.</Data>
        <Data>1603</Data>
      </EventData>
    </Event>
    Log Name:      System
    Source:        Application Management Group Policy
    Date:          13/08/2013 9:44:23 AM
    Event ID:      102
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          SYSTEM
    Computer:      WIN7TEST
    Description:
    The install of application Adobe InDesign CS6 from policy Global-Application-Adobe InDesign failed.  The error was : %%1603
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Management Group Policy" />
        <EventID Qualifiers="0">102</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-08-12T23:44:23.000000000Z" />
        <EventRecordID>9479</EventRecordID>
        <Channel>System</Channel>
        <Computer>WIN7TEST</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data>Adobe InDesign CS6</Data>
        <Data>Global-Application-Adobe InDesign</Data>
        <Data>1603</Data>
      </EventData>
    </Event>

    Hi Abhijit,
    I am able to install InDesign CS6 manually on the machines from the CD/DVD however when trying to install it via GPO or running the msi using the msi exec commands it doesn't install and leaves the above errors in the event log.
    The installation was made using the same CD/DVD and the installation works on the Windows XP clients and software other than InDesign CS6 will install to the Win 7 64-bit machines via GPO.
    Cheers,

  • Offline Files Not Enabling via GPO

    Hello,
    I have used the Offline Files syncing feature in Windows 7 for quite some time now. We moved to a different model laptop this year (Lenovo ThinkPad Yoga) and the Offline Files feature is not being enabled on it via Group Policy. I can see the GPO is being
    applied and the folder redirection in the GPO is working, however, the Offline Files piece is not.
    The Offline Files is working on every other model but the Yoga so I am positive it is something in the image itself preventing Offline Files from enabling via GPO. I can manually go in and enable it but doing this for 150 existing users in the time I need
    is not feasible. 
    What could possibly be in the OS (image) preventing this from enabling through Group Policy? I know for a fact this is not a problem with Group Policy itself since it is working on every other model but the Yoga. I even logged into an x230 and Yoga side
    by side with the same user account and it worked flawlessly on the x230 but not the Yoga. So I know it is an issue with the Yoga image.
    Any help is greatly appreciated!
    Thanks, Mike

    Hi Mike,
    Based on your description, we can check if the Offline Files service on the Yoga computers are automatically enabled. If not, we can edit the following registry to enable
    the Offline Files.
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CSC
    From the list of registry values displayed in the right side pane, change the data in the registry value
    Start to 1, and then we need to reboot the computers to activate Offline Files.
    To edit the registry for multiple computers, we can utilize Group Policy Preferences Registry extension to do this.
    Regarding this point, the following article can be referred to for more information.
    Registry Extension
    http://technet.microsoft.com/en-us/library/cc771589.aspx
    Best regards,
    Frank Shen

  • Upgrade Adobe Reader via GPO

    Hello,
    We have about 50 workstations with Adobe Reader 10.1.3. It was installed manually. Now, we would like to upgrade them to version 11 via GPO. Can someone provide me the step-by-step instruction on how to do that? I've seen some articles but scenarios are different because we never had GPO created for Adobe Reader.
    Thanks!
    Message was edited by: MsDeeJaye

    One word of warning, I've been pushing Reader through our GPO for the last year or so and it's not 100% flawless. Which, to be fair, a lot of GPO installs seem to fall into the "not 100% category". Tried several different ways ranging from keeping huge version lists that grow with every patch and doing the package upgrade method noted in the admin guide linked above (which is a great general purpose guide by the way, used it a good deal) to making completely new packages every patch and removing old installs from GPO so only current ones are there. The problem we always hit is that sometimes the version you're replacing does not fully go away. You'll get cases where you've upgraded a group through several versions, and then when you do an inventory on a random machine you'll find that it reports having the current version, and one or more old versions as well. So if you are moving to GPO from another deployment solution, depending on how many computers you are deploying to a good software inventory piece is handy. I often find remnant keys in the installer reg entries which are pretty normal to check when doing reg cleanup, but also when deploying via GPO there's HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt which holds keys for everything the system thinks it has installed via GP. These don't always get cleared properly, and will have the PC report software as installed even if it's gone. Just a quirk to keep an eye out for, expecially if you are trying to maintain app counts on your workstations. Also: Adobe Customization Wizard.. learn it, love it.

  • Deploying Java via GPO issues

    Here's a bit of background. I typically run the Java installer and get the msi's from the %appdata% folder.
    Installation typically works well, however, in some cases it takes upwards of 1 hour to uninstall the old version and reinstall the new versions being pushed out.
    From the research I've done it has to do w/ a missing installer.dll file. I'm assuming that windows is waiting on a timeout to occur before it proceeds which is what is causing the delay.
    Does Oracle have a document that talks about how to properly deploy java in an enterprise environment. Is there a specific area that i can download an official MSI for Java rather than having to fish it out of %appdata%?
    It's becoming really inconvenient to have users wait 1 hour for java to deploy every time we need to push an update out.
    Any advise?
    Thanks in advance.

    Stop me if you've heard this one before -I'm trying to deploy TightVNC to workstations on the network via GPO and foundthislovely guideon how to achieve such a feat.I've followed it to a tee making sure that all of the folders containing the scripts and install files are located on a network path to which all domain computers have access to read and execute to, and I'm still having problems trying to get the script to run.I have written WMI filters correctly to sort out 32 bit and 64 bit machines.I've tested the script manually on a local workstation and confirmed the code is good.I've made sure the GPO is being applied to the machine.Still no luck :/
    This topic first appeared in the Spiceworks Community

  • Deploying flash 8 via GPO

    I am trying to get flash installed to my client workstations
    via GPO and it is not working. I assigned
    install_flash_player_active_x.msi to the computer policy in GPMC
    for a test OU and when the the computer reboots I see it attempting
    to install Flash 8 for about 3 seconds and then it is done. I then
    log in and test to see if it was installed and confirm that it was
    not. What am I missing?

    I got it to work. It was something on the computer that I was
    testing it on. When I tried it on other computers it worked like a
    charm. I did check the event viewer and it showed that it was
    installed but it really wasn't installing. Hmm.

  • Deploy Quicktime.msi via gpo on Vista

    I need to build a MSI package for our Vista Business computers. Version is Quicktime v.7.3.0.70. Executing Quicktime.msi manually on Vista installs fine. But deploying via gpo (no MST, assigned to user, [install at login] not checked) I get the message
    "A newer version of Quicktime is already installed. This installation cannot proceed while the newer version of Quicktime is installed".
    Quicktime was never installed on the computer. It has a clean image.
    I have set verbose mode for deployment logging: [HKEYLOCALMACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer]
    "Logging"="voicewarmup".
    In the log file, a line gets my attention just before the afore error message.
    'http://quicktimepro.apple.com/?country=CA&language=fr&productName=QuickTime7&op eratingSystem=Windows
    &osVersion=06000000&qtVersion=07308000&cid=AOSA10000026883'
    See the version number 'qtVersion=07308000' which is higher than 073070 which is the version I am installing.
    Where does Quicktime installer find this info? Am I on the right track to solve this problem? I have put almost three days trying to get this package working.
    Any ideas?

    Here's the solution that worked for me. It was posted on appdeploy.com earlier today:
    -------BEGIN QUOTE-------
    I have been distributing quicktime via group policy using tips that have been posted above. However today when I tried using my normal method to distribute quicktime 7.3 via group policy, it stopped working and I was getting this in the application event log:
    Event Type: Error
    Event Source: MsiInstaller
    Event Category: None
    Event ID: 10005
    Date: 11/6/2007
    Time: 9:19:04 AM
    User: NT AUTHORITY\SYSTEM
    Computer: test
    Description:
    Product: QuickTime -- A newer version of QuickTime is already installed. This installation cannot proceed while the newer version of QuickTime is installed.
    This error started coming up if a previous version of quick time was installed or even if it was none installed and there certainly was not a newer version installed. To fix this problem I used orca and created a transform that removed the row with condition:
    "NOT BNEWERPRODUCTISINSTALLED"
    from the LaunchCondition table. I'm not sure if this was a good idea or not, but it seems to have fixed the problem for me.
    Above Entry Provided on 11/8/2007 by terrymcdonald
    -------END QUOTE-------

  • Deploying Adobe Creative Cloud via GPO

    A few months ago my long and lasting journey with Adobe CC started and I was pretty eager to deploy the software in our enterprise. As it comes out, with a little help from Adobe, that just made me crazy and a few pretty pointless and sensless tests I finally managed it somehow to get Adobe CC deployment via GPO. None of our users have local admin rights due to restrictive policy in our enterprise. All testing and configuration was made on Windows 7 Enterprise (x86 and x64) machines.
    As we don't use SCCM in our environment it was critical to use "simple" GPO rollout for software. As there are MSI's with all the packages I started my journey...
    To start it all of:
    As it seems, you cannot buy licenses any more permanent and you can buy them via subscription. OK, that's one way to go and since we need all these products in future we went in evaluating it. Since we cannot buy licenses in a big order like adobe wants us to we were only left to buy the creative cloud for teams and not for enterprise. Still, this was fine to, since adobe offered the cloud packager and a lot of documentation, i thought at least.
    To test and make sure that we can deploy all of the wanted features of creative cloud we bought 2 licenses for the IT-staff. During testing, late semptember/october 2014, with the cloud packager in version 1.6 I was able to deploy the packages and software as we wanted. Just as information, we wanted our users to have Bridge, Photoshop, InDesign, Illustrator, Dreamveawer, Prelude and the most important thing, we did NOT want the creative cloud desktop application due to company restrictions. Well as mentioned before everything worked as charm and I was just happy to start ordering the licenses for all of our users and get things done
    Well, as a lot surely know, the process of ordering the licenses and getting things rolling in a enterprise sometimes takes a little (more) time. After about one or two months later everything was ready and set and I was feeling like this is going to be a piece of cake. Make new packages with the cloud packager, create the gpo's, test the deployment, invite the users and I'm the king of the jungle.
    That was what I thought...
    Adobe was so nice to release the newer and more improved version (I think 1.7 or 1.8) of the cloud packager, that suddenly hasn't been able to deactivate the creative cloud desktop application. Well, not a problem I thought to myself, I'll just uninstall it later on and it's fine. Since there are about 20 users that were getting the software it would be a not so nice job, but once done it's done and it shouldn't happen again.
    Then i was hit by Adobe with a colossal fist right in the face! Why are you asking? Well as I mentioned above, the deployment via GPO worked fine and now? Not anymore, since the exception deployer couldn't install the applications it just broke everything and didn't even try to install the other applications that don't need the exception deployer. After a few e-mails and further testing, run as local admin, run installation after being copied to local, I lost fate that this is ever going to work.
    Adobe gave me the best help they could and I even had a deployment expert in on a web session and he gave me a short commandlet (exception deployer) and said that it has to work this way but surprise, it didn't. As I was getting more and more frustrated by this situation and the exception deployer I started to shrink down the packages as much as possible so that there are no applications that needed to be deployed with the exception deployer. I run tests and guess what? It worked! Man, was I happy that after almost a month things started getting in the right shape. As I couldn't sleep because of this mess I started testing the applications that Adobe techs said needed the exception deployer. I created a new package just for Lightroom 5 (yeah, I know there is a newer version out now, but not at that moment) and saw that it landed in this exception folder that is made during packaging with the cloud packager. I was just curious to test it and made a new GPO for just Lightroom, as a MSI was also within the package I figured, why not give it a try? It worked again!?! I was pretty surprised due to the information that it shouldn't be working, as Adobe techs stated.
    The simpler problem was the creative cloud desktop application. After having the Adobe techs in on a websession they stated, that it should work if I choose enterprise licensing to get rid of this software. But due to Adobe's updating policy of the creative cloud packager, there has been a newer version released (1.9) that opted out this feature to deactivate the installation of the creative cloud desktop application. I thought myself, why? Just please tell us why Adobe do we need this? But OK, there was also a solutions for this problem, the adobe creative cloud cleaning tool. If you create and XML file that is being read from the cleaning tool you can run this and "almost silently" uninstall the software via GPO. I gave it a shot and it works like a charm.
    To be honest I thought, that Adobe due to it's status as THE software company when it comes to creating/editing multimedia content they would know about the problems some of their customers across the globe could be having. As it seems, they don't care enough or haven't ever had somebody with a similar problem(what I cannot believe, but all right) to share some more detailed information about a case like this.
    I know, why have we bought it, if we don't need any cloud space? Well it's simple, Adobe creative products are needed and the CS6 products won't be here forever so it's better to start sooner than later with migration to a newer release. Still I was hoping to get more help from Adobe....
    Just to share the packages with you:
    "Complete 32Bit" package includes: Audition CS6+Updates, Bridge CC, Dreamweaver CC 2014.1, Edge Animate CC 2014, Fireworks CS6, Illustrator CC 2014, Incopy CC 2014, InDesign CC 2014, Photoshop CC 2014, Prelude CS6
    "Complete 64Bit" package includes: Audition CS6+Updates, Bridge CC, Dreamweaver CC 2014.1, Edge Animate CC 2014, Fireworks CS6, Illustrator CC 2014, Incopy CC 2014, InDesign CC 2014, Photoshop CC 2014, Prelude CS6, Premiere Pro CC 2014, SpeedGrade CC 2014
    "InDesign 32Bit" package includes: InDesign CC 2014
    "InDesign 64Bit" package includes: InDesign CC 2014
    "Lightroom 5 32Bit" package: Lightroom 5
    "Lightroom  5 64Bit" package: Lightroom 5
    None of these packages needed the exception deployer to be run. It was all tested on different (also different machine specs) 32bit and 64bit machines. The OS was always Windows 7 Enterprise.
    To uninstall the creative cloud desktop application i wrote a batch file:
    @ECHO OFF
    IF EXIST C:\log_adobe_cc_cleaner\*.* EXIT ## checks if this folder is existent. If not it continues. If there is the folder it stops and won't run again ##
    mkdir C:\temp_adobe_cc_cleaner ## creates a temp folder, as the uinstall tool can only be run locally ##
    xcopy \\your_server\your_share$\adobecc\adobecc-cleaner\*.* C:\temp_adobe_cc_cleaner\*.* /Y ## copies the complete content of the folder to the newly created local folder ##
    call "C:\temp_adobe_cc_cleaner\AdobeCreativeCloudCleanerTool.exe" --cleanupXML=C:\temp_adobe_cc_cleaner\cleanup_desktop_app.xml
    xcopy "%Temp%\Adobe Creative Cloud Cleaner Tool.log" "C:\log_adobe_cc_cleaner\*.*" /Y ## copies the log file to folder, creates the folder itself ##
    rmdir /q /s "C:\temp_adobe_cc_cleaner" ## removes the adobe creative cloud unintaller from local machine, leaves the log file folder for further check if the creative cloud uninstall tool needs to be rerun ##
    The XML file has following written:
    <?xml version="1.0" encoding="UTF-8"?>
    <Products>
    <Properties>
      <Property name="eulaAccepted">1</Property>
      <!--<Property name="removeFlashPlayer">1</Property>-->
    </Properties>
    <CreativeCloud>
      <Product productName="Adobe Creative Cloud" version="2.0"/>
      <!--<Product productName="Adobe ID CC2014 x32 AppBase" version="10.0"/>-->
    </CreativeCloud>
    <AdobeIdCredentials>
      <!--<Product productName="Adobe Id Credentials" version="1.0"/>-->
    </AdobeIdCredentials>
    </Products>
    Updating of the Adobe products is done with Secunia CSI in our enterprise, but there is also the posibility to remotely run the updatemanager.exe or via logon/logoff script.
    What I also found out, was the dependency of vcredist for adobe products. You need the 2010, 2012 of them and most importantly in the x86 and x64 version! In case you get a .DLL missing error.
    I hope this here helps someone who has lost a lot of nerves and a lot of time due to the deployment of Adobe creative cloud applications. I stil hope that there is going to be a better and easier way to deploy this.
    Excuse me for the bad english, good luck with your deployment and maybe we can get Adobe a bit smarter from our all experience to make us a good deployment method.
    Toni

    Slim.nl is an indirect seller of Adobe products whose policies are not known to us. In our server we do not see any purchase from Adobe.com.
    Please try to purchase from https://store2.adobe.com/cfusion/store/html/index.cfm?store=OLS-NL&event=displayProduct&ca tegoryPath=/Applications/AcrobatProX
    You do have an Adobe ID with the Email provided here.
    Regards
    Rajshree

  • Here we go again...cannot update 10.0.0.1 via GPO

    Per usual, I'm trying to deploy some of the patches released via the Adobe Gods and once again, things aren't working.
    I'm a bit behind in updates just becasue of these issues.  Everytime I try and update, I run into brick walls and it's always such a hassle I avoid it as much as possible anymore.
    My new struggle is updating our existing clients from 10.0.0.1 to 10.0.0.3.  I've downloaded both incremental patches (AcrobatSecUpd1002.msp & AcrobatSecUpd1003.msp) but get errors right away.  When I try to apply the patch to our existing install I get the error message:
    "The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program.  Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch."
    These are the commands I'm using:
    "msiexe c /a AcroRead.msi /p AcrobatSecUpd1002.msp"
    "msiexe c /a AdbeRdr1000_en_US.msi /p AcrobatSecUpd1002.msp"
    I tried both AcroRead.msi & AdbeRdr1000_en_US.msi just in case something changed when I applied the AdbeRdrUpd1001_Tier1.msp update a while ago.
    So again I'm flustered and confused and don't know where to go from here.  I just wish this would be easier and not be such a headache every time I need to push updates down to the clients via GPO.
    Would having a program like installshield or Wise or some other similar program help with stuff like this?  If so then I'm going to definately start pushing my boss to approve the purchase of it!!!
    Heeeeeeeeeeelp!!!

    Ah, okay.  We got an email here at work saying that 10.0.0.1 and 10.0.0.2 were vulnerable and to update to 10.0.03.  So I went to the FTP site to see what was availiable and saw those updates.  I didn't realize it was only for the other versions.  My bad.  Thanks for clerifying!
    EDIT:  Geez...I need to figure out what email is connected to what username and delete one of these things before I drive myself batty!
    Message was edited by: ned4spd8874 (aka RevDrChris)

  • Installing Flash Player 11.8.800.94 via GPO not working properly

    Hello,
    i've installed Flash Player 11.8.800.94 via GPO.
    Installation works fine, but there is no flash player available in Firefox or Internet Explorer.
    Deployed both Flash Players.
    Tried to reinstall Flash Player 11.8.800.94 for Firefox, but it's still not active.
    Windows 7, 64bit
    Greetings,
    Michael

    Hello Comvel.
    RE:
    Hello,
    i haven't fixed it yet.
    I've deployed the last few version of flash player without any problems.
    I haven't found any new things in the admin guide.
    The plugins don't show up in both browsers. I can't enable them.
    On the most importent clients, i've installed flash player manually.
    I know it has been a few months since your post but, I was wonderingif you were able to find a solution for this that didn't involve manual installations. I've recently deployed 11.8.800.175 and am running into the same problems. Some work stations are just fine. But others, (both windows 7 and xp, all IE8) are not working. When navigating to a site like youtube, theres a banner that says update is needed. When you go to manage add-ons there is no shock object/add on.

  • How to change maintenance powershell script via GPO?

    Per suggestion reposted from here: http://social.technet.microsoft.com/Forums/windowsserver/en-US/6eece9d6-a524-48aa-8e64-7554f0ec9b31/how-to-change-maintenance-powershell-script-via-gpo?forum=winserverGP
    Posted at http://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/desktop-shortcuts-to-items-on-network-drives/94eddb27-342b-40fc-9ad4-677ff4ee8ebe?page=9&tm=1403700614489 originally.
    There is a very annoying "feature" in Windows 7 called BrokenShortcuts.ps1 which is being called out weekly via maintenance task and if it finds more than 4 "broken" network shortcuts it removes them all. So it means if a user at this
    moment is disconnected from the network he will lose all links to shares, network applications sitting on his desktop. Funny that there was no such script on Vista and i don't see this on Win8. On the post i have attached one user suggested to edit this script
    and change 4 to 500 or whatever high number. That's fine for one time fix. But i need to do this for 200+ users. This file cannot be simply replaced by a script, so i'm wondering is there any way to do it via GPO?
    I have already tried various startup scripts, but i'm not sure which user to put into commands.
    I need to run this on startup:
    takeown /F C:\Windows\diagnostics\scheduled\Maintenance\TS_BrokenShortcuts.ps1
    icacls c:\windows\diagnostics\scheduled\maintenance\TS_BrokenShortcuts.ps1 /grant "some user":F
    copy \\share\folder$\TS_BrokenShortcuts.ps1 C:\Windows\diagnostics\scheduled\Maintenance\ /Y

    You need to take time to study how Windows does these things.  You can control them with GP which is what you asked.  The article shows you how to disable elements of the tasks.  Each task controls a script.  If you disable the task the
    script that deletes shortcuts will be stopped. Other maintenance tasks will continue to run.
    Most of your problem is that you seem to want someone to provide a magical solution.  In technology it is necessary to fully research your issues until you understand all aspects.  After fully studying the issue you should understand the possible
    solutions if they exist.
    You claim to have deployed the patch that Microsoft released to fix the issue.  You claim it didn't work.  If that is the case then you need to call MS and \p[en a support incident.  If  Microsoft determines that you are right about the
    patch not working you will not be charged for the call.
    I know that learning how to support technology is hard and frustrating for newcomers.  In time, by using these incidents to learn, you will become a seasoned technician and all of this will seem trivial.  Until then we can only suggest that you
    do things that most of us are familiar with.  We cannot fix your network for you.
    I think you haven't really posted in the GP forum but posted a question about GP in the server forum.  Try posting in the GP forum.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverGP
    Here is one answer from the GP forum:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverGP
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/600ca14f-8b1b-400c-b27f-a7f5733407ac/windows-scheduled-maintenance-task?forum=winserverGP
    ¯\_(ツ)_/¯

Maybe you are looking for

  • How do I go to a web site when I click on a button ?

    Hello I am going a GUI program that would go to a program or a web site when a button is clicked. What do I have to do to access a web site ? for instance:     if (e.getSource() == myJButtonBible)           // go to www.nccbuscc.org/nab/index.htm    

  • Changes in cash journal line item-fbcj

    Hi SAP guru, Cash journal was posted through fbcj , due to some reason text and assignment field of this cash journal was changed in fb03. But changes done in through fb03 has not been reflecting in fbcj. Please reply how to change the same. thanks i

  • How to resolve the decimal point issue??

    hello friends, I had declared a variable of variable type P(16) decimals 6 for price. The price is calculated accurately and stored in the variable. The value that got stored is 5094390.000000. I declared one more variable of type ekpo-netpr and move

  • PLS-00302: component 'SET_NO_OUTLINES' must be declared

    Windows 2000 Server Oracle 10.2.0.1 upgraded from 9.2.0.1 IMP-00058: ORACLE error 6550 encountered ORA-06550: line 1, column 33: PLS-00302: component 'SET_NO_OUTLINES' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored IMP-00000:

  • Default Data Parameter

    Post Author: despec CA Forum: General I have read that in previous CR version (before XI), you could default a date parameter to the current date.  Is there any way in CR XI to achieve this or our we SOL until we upgrade to CR 2008 (which I hear does