Cannot Copy File with Group Policy Preferences

Hi,
I am trying to use a Group Policy Preference to copy a simple text file from a network share to a folder at the root of 'C:\' on the clients. It is not happening. I created the preference in the computer section of the GPO. It is set to create, as the file
does not already exist on the client, with the archive bit on.
Source: \\server.domain.com\folder\fileshare\file.txt
Destination: C:\folder
GPResult shows the clients are getting the GPO, but it seems as if that one setting and another is not being applied. I have no idea why this isn't working when other parts of the GPO are being applied. I read
the documentation on the Technet page, but I must have missed something.
Any ideas why this might not be working?
Thanks
Jason Watkins MCSE, MCSA, MCDBA, CCNA

> Computers" has read access. Listing the actual file name in the
> destination is something I would have never though to do.
...unless the path ends with an "\", it IS a file name, so if you had
"C:\Folder" as the target, check your C:\ drive for a file called
"Folder" :)
Martin
Mal ein
GUTES Buch über GPOs lesen?
NO THEY ARE NOT EVIL, if you know what you are doing:
Good or bad GPOs?
And if IT bothers me - coke bottle design refreshment :))

Similar Messages

  • Deploying Files with Group Policy - Help Needed

    Hi,
    I am trying to use group policy to deploy files and folders to our server estate. The policy I have created first creates a folder on each server's C drive and then coppies a set of files to this folder from a network share. The folder creation works fine
    but the files copy fails. In the Application logs on the servers it displays the following error:
    The computer 'ILMT' preference item in the 'GPO - Servers_Production_ALL {CC026B58-FA3B-4399-AA00-AE8E844B2B47}' Group Policy object did not apply because it failed with error code '0x80070005 Access is denied.' This error was suppressed.
    Can anyone advise what exactly does not have access here? I don't know what I need to enable to get this to work.
    Can anyone help?
    Many thanks
    James

    The copy is on a file server share. presumably if I just give everybody read access to the share that would suffice?
    No it won't.
    "Sharing" requires several actions:
    a) create the folder
    b) share the folder
    c) grant NTFS permissions on the folder
    I think you've neglected action (c).
    For your scenario, you need to grant the "server computers" read permissions to the folder.
    You can add individual computer accounts, or a group, or "domain computers".
    (In a similar way, you could grant access to a user, a group, or "domain users")
    [if you need everybody (users) *AND* everything (computers), you could grant permissions to "authenticated users" since that principal includes *BOTH* users and also computers]
    Note that "domain computers" and "authenticated users" include all types of domain member computers, i.e. servers, workstations, etc.
    Also, note that granting a "computer account" access to a folder or share, does *NOT* mean that a user account on that computer can access the remote share, i.e. permission is granted to the computer account, and a logged-in user account on
    that computer does not inherit any kind of access to the remote share by virtue of being logged in.
    This means that the computer can access the share but the user cannot access the share. Because the computer account is an identity/principal of it's own accord.
    [None of which really has anything to do with Group Policy at all - it's how Windows does file sharing and ACLs... ;)
    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!)

  • Vista logon stuck with Group Policy Preferences

    After testing some Group Policy Preferences, my Vista SP1 laptop was stuck logging on , it showed (welcome) and then stopped the logon process.
    To be sure i did a fresh Vista reinstall but i still couldn't logon to the domain, the GPO Event log showed that it was looping (endless) trough the GPO's, without showing any obvious errors. I removed all the settings from the Preferences GPO, i stayed with GPOP Drive and Printers mappings and they work fine.  
    After adding these 3 settings it hung again:
    Regional Settings
    Abort rest of group on error:  No
    Process in user context:  Yes
    Remove (if not applied):  No
    Preference (apply once):  No
    Filtered directly:  No
    Filtered by ancestor:  No
    Disabled directly:  No
    Disabled by ancestor:  No
    Internet Settings
    Abort rest of group on error:  No
    Process in user context:  No
    Remove (if not applied):  No
    Preference (apply once):  No
    Filtered directly:  No
    Filtered by ancestor:  No
    Disabled directly:  No
    Disabled by ancestor:  NO
    Start Menu
    Abort rest of group on error:  No
    Process in user context:  Yes
    Remove (if not applied):  No
    Preference (apply once):  No
    Filtered directly:  No
    Filtered by ancestor:  No
    Disabled directly:  No
    Disabled by ancestor:  No
    Is this normal behavior, and has someone else seen this unwanted "feature"!?? Or did i make a mistake..

    Hi tnx for your reply
     Florian Frommherz wrote:
    So did it actually stop? The blue circle did it stop turning around? How long did you wait for it to complete? Are there only Preferences or policies in place as well?
    The blue circle is turning arround, it seems looping, after 20 seconds it stops for half a second and starts a new 20 second loop stops for half a second etc etc. In the GPO Vista event log i can find this loop. (checking link speed, finding applying GPO's....... and starting over again)
    I waited for more then an hour, a normal logon takes 30 seconds for the Welcome screen.
     Florian Frommherz wrote:
    So - you mean to say that it behaves the same way? It just stops processing the policies?
    It doesn't stop, it seems to loop...
     Florian Frommherz wrote:
    I guess not. Could you create a new, seperate policy will all the Preference settings that let the machine "get stuck" and apply it to a test machine so that those Preferences in question are the only ones applied? Maybe you can track down which Preference causes the machine to choke.
    I did, i seperated the GPO Parts, i know that the Drive and Printer mappings from the GPOP are working fine.
    It's in one of those 3 GPO settings (IE, regional, start menu). Even if i disable those specific GPOP parts the logon still gets stuck, after removing / disabling the complete GPO logon runs normal.
    I also think during logoff the GPOP are also conflicting since it's also stuck during logoff.
    Other Domain accounts are able to logon and off fine!
    Could this be caused by the, running a GPOP in User context???
    My Vista version is Enterprise, i didn't check on other Vista versions.

  • Cannot copy file with other buffer sizes, except 1

    Hi,
    i'd like to copy files (txt, images, etc) , but by using the following route:
    -read bytes from a file in a ByteBuffer
    -use a byte array to create a String representation in binary form (ie "0101101") of the ByteBuffer
    -print the string
    and then the reverse:
    -create a byte array from the String
    -put the bytes in another ByteBuffer
    -write them to the destination file
    The problem is, that in the general case, this only works for ByteBuffer.allocate(1)! it works for txt files with any size, but not for image files; i have not tried for any other kind of file.
    Ideas?
    import java.io.*;
    import java.nio.*;
    import java.nio.channels.*;
    import java.math.*;
    /* create the copy of a file:
    * In the middle print a string with the contents of the buffer, in binary form
    * and then use this string to create the copy of the picture.
    public class CopyFile
      static public void main( String args[] ) throws Exception
         if (args.length<2) {
          System.err.println( "Usage: java CopyFile infile outfile" );
          System.exit( 1 );
        String infile = args[0];
        String outfile = args[1];    
        FileInputStream fin = new FileInputStream( infile );
        FileOutputStream fout = new FileOutputStream( outfile );
        FileChannel fcin = fin.getChannel();
        FileChannel fcout = fout.getChannel();
        ByteBuffer bufferSource = ByteBuffer.allocate( 1 );
        ByteBuffer bufferDest = ByteBuffer.allocate( 1 );
        byte[] barraySource;
        byte[] barrayDest;
        while (true) {
          bufferSource.clear();
          int r = fcin.read( bufferSource );
          barraySource=bufferSource.array();
          BigInteger biFrom = new BigInteger(barraySource);           
          String binary = biFrom.toString(2);
          System.out.println(binary+" | ");     
           BigInteger biTo=new BigInteger(binary,2);
           barrayDest=biTo.toByteArray();
           bufferDest.clear();
           bufferDest.put(barrayDest);
          if (r==-1) {
            break;
          bufferDest.flip();
          fcout.write(bufferDest);
    }

    I've changed a couple of things, but the problem remains. It is the first time i work with binary data. Can somebody give me a hint?
    public class Test2
        public static void main(String[] args) throws Exception
            File fin=new File("C:\\Documents and Settings\\p3020139\\My Documents\\pic.JPG");
            File fout=new File("C:\\Documents and Settings\\p3020139\\My Documents\\piccp.JPG");
            FileInputStream fis=new FileInputStream(fin);
            FileOutputStream fos=new FileOutputStream(fout);       
            long fileSize= fin.length();
            long bytesRead=0;
            BufferedOutputStream baos=null;
            while (bytesRead<fileSize+1)
                byte[] barray=new byte[128];
                int read=fis.read(barray); 
                BigInteger biFrom = new BigInteger(barray);           
                String binary = biFrom.toString(2);
                System.out.println(binary);
                BigInteger biTo=new BigInteger(binary,2);
                byte[] bytesTo=biTo.toByteArray();
                baos=new BufferedOutputStream(fos,128);
                baos.write(bytesTo);
                bytesRead=bytesRead+read;
            fis.close();
            baos.close();
        }

  • Deploying Printers With Group Policy Preferences

    Ok so I know this is an old topic but I need to clarify my position a bit here to best decide how to deploy printers to our organization.
    We currently have about 600 printers on a Server 2012 R2 print server and we have 25 buildings. For several years we have deployed printers in GPO the old-fashioned way - user Deployed Printers. There have always been problems with this stemming
    from issues with multiple print driver installs on the client computers. That aside, the philosophy works out pretty well. We have NTFS permissions on the print queues that handle who can print to what. GPOs are linked to the staff OUs for each building that
    actually deploy the printers. This means that you have to have the GPO for a building and also have to have permission to the printer in order for it to actually install. When a user is removed from a particular building group then at next policy refresh the
    printers granted to that group go away. This is good.
    Based on the way that preferences work I think that they could solve our problems with occasional failed driver installs, but I can't find a way to reproduce the behavior I described above. If I use create, a user can be deployed a printer but if permission
    to that printer is removed then the printer stays behind and they get an access denied error when they attempt to print to it. Same with Update. Replace sort of mimics the desired behavior but deletes and recreates the printer every time policy refreshes.
    This wouldn't be a deal-breaker at logon, but it even happens while a user is logged in and policy updates in the background. They could potentially be attempting to print something and the printer will just disappear momentarily.
    Is there something else I am missing here that I can configure in order to take advantage of GPP printer deployments in our environment? Thanks!

    Hi Matt,
    As far as I know, if we choose to use GPP Printer extension to deploy printers, the printers will leave behind even if the policy is out of scope, unless we select the above mentioned option or delete the printers.
    >>There have always been problems with this stemming from issues with multiple print driver installs on the client computers.
    To tackle this issue, had we disabled the following policy setting?
    Computer Configuration\Policies\Administrative Templates\Printers : Point and Print Restrictions
    If not, we can disable this setting, which will disable driver installation warning messages and elevation prompts on computers.
    Regarding this policy setting, the following article can be referred to for more information.
    Control Printer Driver Installation Security
    http://technet.microsoft.com/en-us/library/cc753269.aspx
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback here
    Best regards,
    Frank Shen
    Frank,
    Sorry for the delay, I recently had another issue take precedence over this one so didn't have much time to mull this over or test.
    We currently have policy set to enable Point and Print restrictions, but allow driver installation from our print server. This should effectively be the same as what you have recommended.
    I believe our driver installation issues have more to do with the large number of different printer models and sometimes the sheer number of printers that can be installed for each user. These are things that we have culturally always been there and probably
    won't change. What happens is that when a printer deployment fails no other printers will be installed after that one. The reason is that starting with Windows 7 the printer deployment policy will only be re-evaluated if changes to the policy are detected.
    So if a user is deployed 50 printers and one in the middle of the deployments fails, everything after that alphabetically fails and it doesn't retry until the GPO changes.
    So far from my limited testing GPP printers gets around this since each printer is essentially a separate object and installation of one does not seem to affect the others. However, I don't like the idea that there is no way to replicate the behavior we
    currently have which is to remove printers when the GPO is no longer applied. I may convince the powers that be that we need to change our philosophy about this and train our users to remove printers after they have changed buildings or positions, but for
    now I think we will stick with traditional printer GPOs rather than using GPP.
    Thanks for your help!

  • Unable to replace existing default progam setting with group policy preference

    I have a bunch of Windows 8.1 machines on a 2003 domain that we're managing using a 2012 server as a domain controller. I have an OU that contains all the machines and a GPO I've linked to the OU. In the policy, under User Configuration -> Preferences
    -> Control Panel Settings -> Folder Options I've created various file type associations and set them to "replace" and have checked "Set as default". In the same policy I've also enabled loopback in merge mode, in order to have
    the same associations apply independently of the logged in user.
    After I do a gpupdate /force on a client machine, the file types that previously had no programs associated with them receive default program associations as defined in the GPO, however the file types that had existing associations are not getting their
    associations replaced. The same is also true if I try to change the default program via GPO for one of the file types that initially had their first program association set via the same GPO. The only result is that the new program association appears as a
    choice in the "open with" context menu, while the old default association remains intact.  I generated a report using modeling on the server and it shows the GPO as "applied" with no errors.
    Any pointers as to what could be wrong and how one would go about fixing this? Thanks in advance.

    You mentioned that you implemented loopback merge mode.  It's possible some of the settings being included in the merge are interfering with your new file associations.  Have you checked to see if there are any conflicting file
    associations in other GPOs that may be applying?  If so, you may want to experiment with loopback
    replace mode.
    Also check to see if any file associations are being set in the computer configuration settings, since you are attempting to set associations in the user configuration.  In a merge scenario the computer policy is processed after the user policy, and
    has precedence if any of the settings conflict.

  • Group Policy Preferences - Internet Settings - Trusted Sites

    hi all
    I can't set Trusted Zone (Site) with GPO Preferences - Internet Settings because it is grey?
    Chris

    Hi Chris,
    The Trusted Sites cannot be added using Group Policy Preferences. But you can add it by native group policy.
    The group policy settings are here:
    User Configuration\Administrative Templates\Windows Components\Internet Explorer\Internet Control Panel\Security Page\Trusted Sites Zone
    If you really want to use the GPP, please manually add the registry keys through GPP.
    Regards,
    Miya
    This posting is provided "AS IS" with no warranties, and confers no rights. | Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer
    your question. This can be beneficial to other community members reading the thread.

  • Group policy Preferences server 2008 and windows 7

    Hi I have been struggling with an issue with group policy preferences for a while now with regard to pushing out printers to windows 7 (32/64 bit) Machines. I have two DC servers one is 2008 and the other is 2008 r2. I have setup the group policies on the
    2008 server as it is the only one i am allowed to access regularly to do this.
    Basically here is my problem. I have created multiple GPO's to send out printers from out print server to classrooms across the school district I work for, I have a mix of xp and windows 7 machines. I have the server setup with both 32 and 64bit drivers
    for all printers on that server, we have a mix of oki and hp and ricoh. I know all the connections work and the drivers work well, however when I push them out using the group policy, the windows 7 machines don't install the printers. The xp machines do this
    perfectly well when I install the client side extensions patch, but they just will not pull down on the 7 machines unless i install the printer first manually, then delete it and then run gpupdate. In that instance it will work, but obviously i don't want
    to have to go round thousands of computers doing this manually.
    Just as a side note, each classroom has its own user account and its own printer.
    If anyone has any advice as to how i can go about resolving this issue i would greatly appreciate it, this has been a problem i have been researching and trying to fix since January.......

    Hi,
    >>The xp machines do this perfectly well when I install the client side extensions patch, but they just will not pull down on the 7 machines unless i install the
    printer first manually, then delete it and then run gpupdate.
    Before going further, we can run command
    gpresult/h gpreport.html with admin privileges to collect group policy result on the troubled Windows 7 clients to check the issue. Besides, we can also check event logs in Event Viewer to see if some related error events were logged.
    Besides, I want to confirm if we have disabled
    Point and Print Restrictions under both User Configuration and Computer Configuration. To have a consistent experience, it’s recommended that we disable the policy setting in both locations if we are dealing with mixed-level clients.
    Regarding this point, the following article can be referred to for more information.
    Point and Print Restrictions policies are ignored in Windows Vista SP2, Windows Server 2008 SP2, and later Windows operating systems
    http://support.microsoft.com/kb/2307161/en-us
    Best regards,
    Frank Shen

  • Can I import a list of services into Group Policy Preferences \ Control Panel Settings \ Services?

    Hello,
    We want to control server services with Group Policy Preferences via the Group Policy Preferences \ Control Panel Settings \ Services.  By starting from scratch, I don want to manually add each Service here.  Can I import a list of Services
    here, then go back and config the properties?
    I appreciate the help.
    Thanks for your help! SdeDot

    > with settings, however I don't see a way to import that list.
    Usually, there's no need for that. Most people only configure services
    that aren't already configured the way they should be after an OOBE
    install...
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Windows 2008 R2 - Group Policy Preference - folder option "Open with" Access denied

    Similar to this post:
    social.technet.microsoft.com/Forums/en-US/d42a81bc-96de-4af3-bc41-079e88e6ea4a
    We have Citrix terminal servers running Windows 2008 R2 and attempting to force PDF files to open with Acrobat versus PDF editing software we have installed for a small subset of users.  So I created a Group Policy Preference and added a OpenWith item
    to the Folder Options to use Acrobat as the default and linked it to a Users OU.  However, if I run gpresult the OpenWith setting fails with error code 0x80070005.  You can change it to not run in the user's security context which eliminates the
    error but then it won't actually do anything.
    The problem seems to be that when a user sets another program as their default via Windows Explorer the permissions on HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pdf\UserChoice get changed so that the user is specifically
    denied the ability to set that key.  Remove the special permissions added and the group policy succeeds and changes it back to the default ... until the user changes it back (intentionally or otherwise) and the permissions are changed again.
    Any ideas here?

    > Any ideas here?
    We use GPP Registry to achieve this goal, so we do not run into that
    issue (we unchecked "run in users context", so privs are not an issue)
    But I agree, this really should work as intended...
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Replace Mapped Drives with UNC Paths via Group Policy Preferences

    We are currently using Group Policy Preferences to map network drives to drive letters for our users.  Given the risk of ransomware, etc. these days we want to provide users with a UNC link rather than a mapped drive letter.  Can anyone tell me
    the best way to do this?
    Thanks,
    Joe

    > We are currently using Group Policy Preferences to map network drives to
    > drive letters for our users.  Given the risk of ransomware, etc. these
    > days we want to provide users with a UNC link rather than a mapped drive
    > letter.  Can anyone tell me the best way to do this?
    Create shortcuts :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Group Policy Preference: Problem Adding Network Locations

    Group Policy Preferences (GPP) do not currently support correctly creating shortcuts in Network Locations/My Network Places the way Windows produces them when you go through the "Add a network location" wizard. Unfortunately, the GPP simply creates a standard shortcut instead of creating a folder that contains target.lnk and desktop.ini (the way the "Add a network location" wizard does).
    I was curious to know when the GPP engine will be updated to correctly add Network Locations the way the "Add a network location" wizard does?
    Thanks.

    Talfr77,
    I would like to know what environment you tried this under.  I made policy like you described on a 2012 domain controller and the resulting shortcut worked fine on windows 8 clients and on the 2012 servers.
     However, the 2008 servers and windows 7 clients didn't work.  They simply got a folder with two files.   It would appear that the format of the target.lnk file may be different between versions of windows.  I took a target.lnk from a
    working shortcut made on a 2008 server and put in on a 2012 server and the result was it not recognizing the shortcut.
    It is also worth noting for anyone who wants to try this method, that in step 2 of Talfr77's directions he says to copy the desktop.ini file using the GPP file copy function to the subfolder with the target.lnk file.  He didn't mention how to accomplish
    that.   You can store the desktop.ini file anywhere on your network as long as the UNC path to it is accessible to the user.  I suggest you store it right in a subfolder of the GPO in the sysvol to keep things tidy.  So that UNC would be the
    source path. (example would be \\domain.local\SYSVOL\domain.LOCAL\Policies\{020DBAF4-2631-4246-8811-DE02F7613959}\desktop.ini) The destination path will be %appdata%\Microsoft\Windows\Network Shortcuts\<Subfolder name>\desktop.ini
    The same goes for his step 3 where you edit the folder attributes.  The folder you want to edit is %appdata%\Microsoft\Windows\Network Shortcuts\<Subfolder name>
    Karl

  • [Forum FAQ] Group Policy Preferences Scheduled Tasks Item not working when the option Run whether user is logged on or not is selected

    Scenario:
    We use one of the following Group Policy Preferences Scheduled Tasks item to deploy a task to clients:
    Computer Configuration -> Control Panel Settings -> Scheduled Tasks -> New -> Scheduled Task (At least Windows 7)
    Computer Configuration -> Control Panel Settings -> Scheduled Tasks -> New -> Immediate Task (At least Windows 7)
    User Configuration -> Control Panel Settings -> Scheduled Tasks -> New -> Scheduled Task (At least Windows 7)
    User Configuration -> Control Panel Settings -> Scheduled Tasks -> New -> Immediate Task (At least Windows 7)
    (Note that on some platforms, "At least Windows 7" is replaced with "Windows Vista and later.")
    After designating a user account to run the task, we select “Run whether user is logged on or not” option, and “The Do not store password…”
    check box is automatically grayed out (See Figure 1).
    Figure 1
    After finishing configuring the task item, on a client, we run command
    gpupdate/force to forcefully update group policy. However, on the client, when we check if the task is listed in Task Scheduler snap-in, the task is not displayed, and when we run
    gpresult/h report.html to collect group policy result for troubleshooting, we see an error as similar as shown in the following figure (Figure 2).
    Figure 2
    Cause:
    To make the scheduled task run whether the user is logged on or not, we need to store the password of the designated user account. However, for the content of the scheduled
    task item is stored in Sysvol where it’s not safe to store passwords, this function has been deprecated.
    Workaround:
    We can run the task with system account
    NT Authority\System, or we can use specific user accounts to run the task when the given user is logged on. (See Figure 3)
    Figure 3
    Reference:
    MS14-025: Vulnerability in Group Policy Preferences could allow elevation of privilege: May 13, 2014
    http://support.microsoft.com/kb/2962486
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Hello Everyone,
    Succeeded !!!!!!!
    Even i was struggling with this same Problem to execute a batch via Window scheduler and set the setting to "Run whether the user is logged in or not".
    I tried many time but the batch runs with " Run
    whether user is logged on" and not with "Run
    whether user is logged on or not".
    what i discovered is that there was one mapped drive
    path in my batch file which was not the complete path like y:/AR.qvw actually what i did i changed that map path to the complete path like \\servnamename\d$\AR.qvw and the batch executed successfully with the setting "Run
    whether user is logged on or not"
    The
    conclusion is that check the dependency of the script on external resources because when you check this option "Run
    whether user is logged on or not" It actually conflicts. This my discovery.
    If
    you have any question write me on [email protected]
    Thanks
    & Regards,
    Arun

  • Group Policy Preference Power Plan "Blocked By Group Policy"

    I noticed this error in the application event log of a Windows 7 PC:
    Log Name:      Application
    Source:        Group Policy Power Options
    Date:          3/21/2013 3:19:42 AM
    Event ID:      4098
    Task Category: (2)
    Level:         Warning
    Keywords:      Classic
    User:          SYSTEM
    Computer:      xxx
    Description:
    The computer 'Power Plan (Windows Vista and later)' preference item in the 'Windows 7 Desktop Power Plan {A078F08F-45CC-4209-A264-FE0CB5635A99}' Group Policy object did not apply because it failed with error code '0x800704ec This program is blocked by group
    policy. For more information, contact your system administrator.' This error was suppressed.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Group Policy Power Options" />
        <EventID Qualifiers="34305">4098</EventID>
        <Level>3</Level>
        <Task>2</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-03-21T10:19:42.000000000Z" />
        <EventRecordID>7687</EventRecordID>
        <Channel>Application</Channel>
        <Computer>xx</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data>computer</Data>
        <Data>Power Plan (Windows Vista and later)</Data>
        <Data>Windows 7 Desktop Power Plan {A078F08F-45CC-4209-A264-FE0CB5635A99}</Data>
        <Data>0x800704ec This program is blocked by group policy. For more information, contact your system administrator.</Data>
      </EventData>
    </Event>
    How can I find out exactly why it is not working?  "Blocked by group policy" is not specific enough.

    Hi,
    You can also enable GPP tracing and logging for more information:
    Computer Configuration\Policies\Administrative Templates\System\Group Policy\Configure Power Options preference logging and tracing
    http://blogs.technet.com/b/askds/archive/2008/07/18/enabling-group-policy-preferences-debug-logging-using-the-rsat.aspx
    Regards,
    Cicely
    There is no such option "Configure Power Options preference logging and tracing" at Computer
    Configuration\Policies\Administrative Templates\System\Group Policy\.
    It alphabetical order Always use local ADM files ... is followed by Disallow interactive users from generating ...  Not

  • Group Policy Preferences Shortcut issues ( event ID 1085 )

    I am hoping someone will be able to help me with a problem that is causing our users a headache
    We have a Windows 2008 SP2 terminal server farm ( 1 gateway, 2 Terminal servers TS1 and TS2 ), we also use Group Policy Preferences to deliver app shortcuts to different AD user groups.
    TS1 and TS2 were built from the same image.  On TS1 users logon and get all the icons they are entitled to, on TS2 it is random to whether they get their shortcuts or not.   
    Both TS are rebooted daily and I have scripted removing any local profiles incase it was something left behind.
    Checking the event Logs on TS2 I see several errors that appear to relate to Group Policy and correspond to when users have connected in.
    any help with this issue would be appreciated.
    Here is the information from the System log:
    Log Name:      System
    Source:        Microsoft-Windows-GroupPolicy
    Date:          05/12/2014 15:32:26
    Event ID:      1085
    Task Category: None
    Level:         Warning
    Keywords:      
    User:          Username
    Computer:      TerminalServer
    Description:
    Windows failed to apply the Group Policy Shortcuts settings. Group Policy Shortcuts 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="2014-12-05T15:32:26.450Z" />
        <EventRecordID>478778</EventRecordID>
        <Correlation ActivityID="{CCB45268-E6F8-4127-97C8-A8544829F2DE}" />
        <Execution ProcessID="344" ThreadID="11212" />
        <Channel>System</Channel>
        <Computer>TerminalServer</Computer>
        <Security UserID="S-1-5-21" />
      </System>
      <EventData>
        <Data Name="SupportInfo1">1</Data>
        <Data Name="SupportInfo2">3892</Data>
        <Data Name="ProcessingMode">1</Data>
        <Data Name="ProcessingTimeInMilliseconds">6047</Data>
        <Data Name="ErrorCode">2147942413</Data>
        <Data Name="ErrorDescription">The data is invalid. </Data>
        <Data Name="DCName”>\\OurDomain</Data>
        <Data Name="ExtensionName">Group Policy Shortcuts</Data>
        <Data Name="ExtensionId">{C418DD9D-0D14-4efb-8FBF-CFE535C8FAC7}</Data>
      </EventData>
    </Event>

    >      <Data Name="ErrorDescription">The data is invalid. </Data>
    Delete the history XML.
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

Maybe you are looking for

  • Why can't I use my new Adobe ID account to download books in Overdrive?

    I create an Adobe ID account so I could download books in my Overdrive account.  However, when I attempt to download a book, all I get is an error message that says... Fulfill:2004 This license has already been fulfilled by another user. What other u

  • HP Officejet 6500A Plus fax report

    How do I stop my HP Officejet 6500A Plus from printing the fax report? I can't seem to find this setting anywhere and I'm tired of wasting ink & paper. Printer: HP Officejet 6500A Plus Operating System: Windows 7 Home Premium with Service Pack 1

  • WNA between AD 2008 R2 and infratier 10.1.2

    Hi! I know that my configuration isn' supported and oracle says just it may work... :-) Bootstrapping and synchronizing the users from AD to OID works well. But windows native authentication (WNA) doesn't work. I followed the following document for c

  • Placed PDF Printing Poorly

    Recently did an ad book that had a color inside back cover...it was a supplied PDF that I placed in my InD (CS6) doc, then supplied printer spread PDFs to digital print shop. The ad came out with drop shadows way out of position; ruined the ad. The p

  • Xproto-7.0.14-1-i686.pkg.tar.gz File unavailable

    Right after a fresh installation and "pacman -Syu" I'm running "pacman -Sy nvidia" now. It doesn't find the xproto file anywhere, although I can see them when I browse the repos directly. I noticed that this file is in [testing] and uncommented those