MorganTechSpace

GPO Software Deployment Failed – The error was : %%1274 and %%2

Event ID 103:

After analyzed some time, found the problem for this issue is insufficient wait time to apply Group Policy.

Fix/Solution for GPO Software Deployment Error : %%1274 and %%2

Follow the below steps to increase policy processing wait time.

1. Open Software Installation Policy applied GPO (In my case: Software_Deployment_GPO ) in Edit mode. 2. Navigate to “Computer Configuration > Policies > Administrative Templates > System > Group Policy” 3. In right-hand side, search and double-click the setting “ Startup policy processing wait time .”

GPO Software Deployment Failed - The error was : %%1274 and %%2

4. Enable the setting and set “ Amount of time to wait (in seconds) ” to a reasonable value for your environment, for instance “60”. Now click the Apply button to apply settings.

GPO Software Deployment Failed - The error was : %%1274 and %%2

5. Update the GPO by running the command gpupdate/force and restart computer to check install the software on machine startup.

  • https://www.advancedinstaller.com/user-guide/tutorial-simple.html
  • https://www.advancedinstaller.com/user-guide/tutorial-gpo.html#tutorial-gpo
  • https://www.advancedinstaller.com/user-guide/read-log.html#read-log
  • Wrap EXE package into an MSI for GPO deployment: https://www.advancedinstaller.com/user-guide/tutorial-convert-exe-to-msi.html

Share this:

Related posts.

  • Group Policy Fix : Add operation failed. Unable to extract deployment information from the package.
  • HTTP Error 500.19 - Internal Server Error
  • Error 6118: ERROR_NO_BROWSER_SERVERS_FOUND
  • Group Policy Infrastructure failed error in Resultant Set of Policy
  • An extended error has occurred failed to save local policy database

SOLVED: How to resolve System Event 108 “The error was : %%1274” When Deploying Software Through Group Policy

Published by ian matthews on february 1, 2013 february 1, 2013.

Well this is just as annoying as can be but it turns out to be pretty quick to resolve.  If you reboot your client PC’s but find some software you pushed via Group Policy did not install, you likely are in Asyncronous Policy Processing Hell.

First verify that the policy did make it to your test PC by launching a CMD window (don’t forget to RUN AS ADMINISTRATOR) and typing GPRESULT.  Just look for your GPO under COMPUTER.  Also check the event log of your test PC and look for The error was : %%1274

BACKGROUND:

Since Windows Server 2003, XP and newer clients don’t wait for the network components to fully load before allowing a user to login.  This makes boot times faster but means that Software Deployments via Group Policy almost always require TWO reboots.  Also, you can get the dreaded:

System Event 108 “The error was : %%1274”

and never get an install completed.

  • Delete the GP Key from the client PC’s registry: HKLM/SOFTWARE/Microsoft/Windows/CurrentVersion/Group Policy
  • Turn Asyncronous Policy Processing off by creating a new GPO (or editing an existing one) with the following setting: Computer Settings > Administrative Templates > System > Logon > Always wait for the network at computer startup and logon – Enabled

I figured this out using several blogs but the most useful and the one deserving the most credit is THIS ONE , in case you want to read more about it.

' src=

Anil · April 14, 2018 at 1:29 am

error 108 when i am starting computer

Error 108 Press to Run SETUP

QUDOWNLOAD » Java Gpo Error 1274 · May 12, 2015 at 9:28 pm

[…] SOLVED: How to resolve System Event 108 “The error was … – Feb 1, 2013 … … error was : %%1274″ When Deploying Software Through Group Policy … Also check the event log of your test PC and look for The error was : %%1274 … SOLVED: How to Deploy Java Through An Active Directory Group … […]

SOLVED: How to Deploy Java Through An Active Directory Group Policy - Up & Running Technologies Calgary · February 1, 2013 at 5:35 pm

[…] Take a quick scan of my post on the two easy fixes for this problem, HERE. […]

Leave a Reply Cancel reply

Avatar placeholder

Your email address will not be published. Required fields are marked *

Related Posts

how to disable netbios

SOLVED: Should NetBIOS Be Disabled & How To Do It

In a word, yes, NetBIOS should be disabled. As always there are some scenarios in which this is not the case but it would be extremely rare to still be using NetBIOS on Windows desktops Read more…

canon pixma ts vs tr

SOLVED: Whats The Difference Between the Canon Pixma TS and TR Series Printers

At Up & Running we spend 95% of our time in the corporate space but periodically a client has us deal with retail products and yesterday was one of those days. The client needed to Read more…

azure multi-factor authentication server eol

SOLVED: What To Do About Azure Multi-Factor Authentication Server Being Depreciated Sept 30 2024

Many companies have been notified that the Azure Multifactor authentication server is being retired and for the vast majority of those companies there is absolutely nothing they should do, because they are not using it. Read more…

logo

Top 5 Reasons Group Policy Software Installation Is Not Working

Group Policy Software Installation (GPSI) is an effective (and free) way to manage software deployment.  After years of use, I have found these five common issues. Let’s walk through the top five issues and the solutions to a fix them! We will figure out why group policy software installation not working!

Problem 1: Does the GPO apply?

If the software isn’t installing on the computer, the first place to start is at the scope tab of your GPO. Basically, if the GPO can’t apply to the computer (or user) – the application won’t install. You can ensure the GPO is applying by running a GPResult on that computer and ensuring that the GPO applied and that the application appears under Software Installation.

group policy software installation not working

If the software doesn’t appear, take a look at The Top 10 Ways to Troubleshoot Group Policy . One special note about software deployment. If you deploy the software to the user side (assigned or published), the GPO must be linked to an OU containing users (or you have to enable loopback).

Also remember that GPSI applies in the foreground. Installation can only happen on a reboot or logon (and only if the GPO was downloaded beforehand). In a default environment, it is easiest just to reboot twice. If you want to turn this into a single reboot, you can enable “Always Wait on the Network at Computer Startup or Logon”. Be aware that this will slow down startups/logons.

Problem 2: Does the software install quietly?

For an MSI to deploy through GPSI, it must be able to install silently. To test this, you only need MSIEXEC! To test quietly, here is your syntax:

msiexec /I “PATHTOYOURMSI” /QB /T “PATHTOMST”

and here is a practical example:

group policy software installation not working

After the installation progress bar has completed (and MSIEXEC.exe has terminated in the Task Manager), you should be able to launch your application through any created shortcuts. If the application errors out during install, you most likely need to specify additional options in your MST file. An example of this would be Adobe Photoshop Elements. If you do not include the serial number in the install, it can’t be deployed through GPSI.

Problem 3: Where is the MSI?

As a best practice, do not store your MSIs in Sysvol. While it may look like a great way to create redundancy, it is going to be a management nightmare.  Instead, set up a dedicated file server (or better yet – use DFS!) and organize your MSI structure. For our environment, we organize the MSIs by manufacturer – then product – then version. This vertical hierarchy allows us to easily find (or update) any piece of software.

The second point to consider is how you load the MSI into Group Policy. Whenever possible, use a DFS Namespace (first choice) or a UNC path (second choice) over an IP. IPs can change (though you should be using a reservation).

group policy software installation not working

Problem 4: Can X access the MSI?

So even though your software is compatible, your users/computers that need to install this software might not be able to reach it. Take a look at the share and file/folder permissions where the MSI is located. If you are deploying to a computer, that computer needs Read/Execute. The same thing applies to a user. In our environment, we actually grant authenticated users read/execute to the share and root folder. This ensures that every deployed MSI always have the correct permissions.

Problem 5: Where are the logs?

If you’ve made it this far, you likely have an installation issue. This can be caused by a misconfigured machine, an old piece of software breaking the upgrade, or a missing component. Lucky for us, GPSI does a decent job logging these kind of issues. Open up event viewer on the troublesome machine and selection the system log. Filter the log to show any issues by Application Management Group Policy (the source) and to only show Warnings and Errors.

group policy software installation not working

As you can see from the error above, GPSI couldn’t install this software until another logon has occurred. If you receive any strange MSI errors – just do a quick search on Experts-Exchange or AppDeploy for that error (ex: 1204) plus MSI. Because these error codes are consistent across nearly all MSIs, you don’t really need to search for your specific product.

11 thoughts on “ Top 5 Reasons Group Policy Software Installation Is Not Working ”

One caught me out the other day that I’d never seen before, app looked like it was installing but never completed – turns out the installer language was German but all machines were English – enable Ignore Language and then deployed OK.

That is a first for me as well! Thanks for the tip!

David did you get this sorted? We were experiencing a similar problem. Software had been deploying using GPOs successfully then started failing. In the end it was IPv6 causing chaos. IPv4 network with IPv6 enabled. Fixed this by disabling IPv6 on all Desktops and static devices and GPOs now work. Random!

That is super random Sue! Just for kicks, have you seen any DNS errors or replication errors with your domain controllers?

Random GPSI issue not covered here (and I wonder if you might point me in the right direction?)

New Win8.1 machines installed to a lab, end of last year. Old GPSI package deployed to generations of computers over 8 years, never with problems. A number of new machines installed the software at build time, but some didn’t. Trying to solve this problem now.

Event logs from last year during the build showed: – The assignment of application blah from policy blah failed. The error was : %%1274 – The removal of the assignment of application blah from policy blah failed. The error was : %%2

I fixed this at the time by tinkering with startup network timings: – GPO Computer Settings > Specify startup policy processing wait time – Eventually fixed properly by tagging ports on a switch as these ports were not configured properly and weren’t bringing the connection up fast enough when machine started up

ANYWAY. Zoom forward to March 2015 and I’m trying to fix the machines that never received the software. I’ve re-downloaded the whole policy using gpupdate /force. I get “Changes to software installation settings were applied successfully” in system log and no other errors. Running GPRESULT /H with elevated command prompt allows me to verify that the computer is indeed receiving the setting to install the package. Checked permissions, even though I know they wouldn’t have changed in 8 years as I’m the only one who manages the network – no issues there.

I’d like to avoid de-joining and re-joining affected machines to the domain, any ideas where to start?

By the way, I’ve already attempted to enable userenvDebugLevel logging, as well as appmgmtDebugLevel logging, neither of which appear to work in Win 8.1 (MS article confirms latter definitely doesn’t work!)

Mat – you have done almost everything that I would do before opening a case with MS. The last thing that I would do is see if the application registered itself with group policy. If it did, I would delete the application key. You can use MSI Manager (available on this page: https://deployhappiness.com/resources/tool-downloads/ ) to do this.

Either way – let me know what you find out!

I’ve pulling my hair on this one. There are event IDs 101, 103, 108 and 1112 showing up every 5 minutes even though MSI are successfully installed on a client test machine. I have made necessary changes in GPO attached below and rebooted DC but no joy – still cluttering my event System log stating that it failed to install which is not true. A shared drive can be accessed by anonymous/guest users from domain and non-domain machines on the same LAN. No issues with AD, DNS, DHCP etc.

* Computer Configuration * Policies * Administrative Templates * System * Logon ENABLE: Always wait for the network at computer startup logon * Group Policy ENABLE: Specify startup policy processing wait time (temporarily set to 120 will change to 30 later)

101 The assignment of application 7-Zip 9.20 (x64 edition) from policy DOMAIN base packages installation failed. The error was : %%1274

103 The assignment of application 7-Zip 9.20 (x64 edition) from policy DOMAIN base packages installation failed. The error was : %%1274

108 Failed to apply changes to software installation settings. The installation of software deployed through Group Policy for this user has been delayed until the next logon because the changes must be applied before the user logon. The error was : %%1274

1112 Failed to apply changes to software installation settings. The installation of software deployed through Group Policy for this user has been delayed until the next logon because the changes must be applied before the user logon. The error was : %%1274

Download MSIManager from this page: https://deployhappiness.com/resources/tool-downloads/

Run it and browse to a computer having this issue – remove 7.zip from the list. Restart and see if the issue goes away.

BTW the good example of how to deploy MSI via GPO I found here: http://messenger.softros.com/help/domain-install.html step-by-step instructions with screen shots

Thanks Taho! Those are nice and simple directions – good to see it using Windows 8 screeshots!

Leave a Reply Cancel reply

  • Security Essentials
  • Deploying Windows 10 (without touching a client)
  • Group Policy – Preferences to Software and Everything In Between
  • OneNote Can Centralize Your Documentation
  • Lunch and Learn: PowerShell 3
  • Lunch and Learn: Software Extraction
  • Disclosure Policy
  • Privacy Policy
  • Rebuild the Administrative Start Menu
  • Guest Posting
  • What’s This? Q&A on Sponsored Posts
  • Blogs that I Follow – 2018 Edition
  • Books to Boost Your Career!
  • Top Articles to Teach You Now!
  • Top Gadgets to be more Productive!
  • Software Tools
  • Other – eBooks, Virtual labs, etc
  • My Articles
  • Clients and Desktops
  • Group Policy
  • Deployment/MDT
  • About DeployHappiness
  • February 2024
  • October 2023
  • January 2023
  • October 2021
  • November 2020
  • October 2020
  • February 2020
  • January 2020
  • November 2019
  • October 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • August 2018
  • February 2018
  • January 2018
  • December 2017
  • October 2017
  • September 2017
  • August 2017
  • February 2017
  • January 2017
  • October 2016
  • September 2016
  • August 2016
  • February 2016
  • January 2016
  • December 2015
  • October 2015
  • September 2015
  • August 2015
  • February 2015
  • January 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • February 2014
  • January 2014
  • December 2013
  • November 2013
  • October 2013
  • September 2013
  • August 2013
  • Group Policy (85)
  • Best Practice (90)
  • Hardware (9)
  • Management (100)
  • Networking (3)
  • Office 365 (8)
  • Performance (23)
  • Quick Tip (26)
  • PowerShell (87)
  • Security (28)
  • Server (16)
  • Thinking about IT (14)
  • Training (6)
  • TroubleShooting (36)
  • Uncategorized (29)
  • Walkthrough (109)
  • Entries (RSS)
  • Comments (RSS)

Stack Exchange Network

Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Software wont deploy, but GPO gets applied and MSI is installable manually

DC: WinServer2012, Client: XP

i have a problem getting a GPO install to work. I created a MSI thats hosted in a network share:

\\server\Deployment\xxx\xxx.msi

when i log on to a computer and start it manually, it installs perfectly in silence and is listed uninstallable via systemcontrol/software.

However, if i deploy it by GPO, it wont work. eventvwr.msc reveals error codes 101, 103, 108 and 1085 without any useful further information (roughly translated in english it is something like: "it did not work because it did not work.." :@). Client is set to wait on network, GPO is listed as applied on gpresult , when i log onto the server and check the ntfs-settings, the MSI has read and execute for domain-computers, auth-users, everyone, anonymous and full for system and admins. The share settings are read for everyone. There are no further events related to that failure.

Does someone please can suggest some fixes? How can i find out WHY it does not get installed?

TIA, rhavin.

  • group-policy
  • windows-installer

rhavin's user avatar

  • Event ID 108 should provide "Failed to apply changes to software installation settings. %1 The error was : %%%2". What are the actual messages these Events are providing you? –  Ƭᴇcʜιᴇ007 Commented Nov 1, 2014 at 20:36
  • Never understood why MS localized error -.-, i'll try to translate in english: 101: the assignment of application (app) of gpo (gpo) failed. error: critical error at installation. 103: remove of assignment of application (app) of gpo (gpo) failed. error: critical error at installation. 108: Changes in softwaresettings not applied. Unable to adopt changes of software. Preceeding log entry should be there. –  rhavin Commented Nov 2, 2014 at 8:09

These errors tell me that your GPO and software distribution are working fine. It's the installer itself that's failing for some reason, and (probably) not reporting 'why' back to the launching process. To that end, they're telling you to check the log file of the installer to determine why, presuming the installer provides a log.

When run by the GP at start up, the context is the "System" context, not a user context. One of the major things that doesn't happen during the System-level install, is that no user profile is loaded. If the installer depends on the user profile to be available for some reason, then it could fail when it's not.

So you have to determine if/why the installer is failing when run in the context used during the GP initiated install.

Optionally, you could change the GP setup you are using; instead of assigning the software package to the Computer , assign (or publish) the software to the User .

I'd explain how to do that here, but there are a few important options and it's better if you get familiar with them all, and then decide which are best for your AD setup.

All the info you need on how to do it is available from Microsoft , and here's a YouTube video that popped up in a search that may help as well: Assigning Versus Publishing Applications in Active Directory .

Ƭᴇcʜιᴇ007's user avatar

  • thanks for the answer, but the msi is configured to at least leave a log on c:\ on startup, even that is not created, so i'm pretty shure the msi was not started at all. as i told, when i start it manually, it works like a charm. –  rhavin Commented Nov 3, 2014 at 17:32

You must log in to answer this question.

Not the answer you're looking for browse other questions tagged group-policy windows-installer deployment ..

  • Featured on Meta
  • We've made changes to our Terms of Service & Privacy Policy - July 2024
  • Introducing an accessibility dashboard and some upcoming changes to display...

Hot Network Questions

  • Sums of exponentials joint probability
  • She's a black belt in judo
  • Weird lines in the Aeneid (Book I, lines 444-445)
  • How can the Word be God and be with God simultaneously without creating the meaning of two Gods?
  • how to replace Info with Emacs
  • I'm 78 and 57 years ago I was a 1 dan. Started karate at 5. I quit karate at 21 for reasons. Want to start again. Do not remember much. What do I do.?
  • Would a manned Mars landing be possible with Apollo-era technology?
  • Can light be somehow confined to create a kugelblitz?
  • WW2 Bombers continuing on one of 2 or 4 engines, how would that work?
  • Is there such a thing as icing in the propeller?
  • Tips/strategies to managing my debt
  • Is there an English equivalent to the Hindi proverb, "A washerman's dog belongs neither at home nor at the riverbank"?
  • Is an infinite composition of bijections always a bijection?
  • How would a creature adverse to solar energy (ie, a wraith) get energy and what would it do with it?
  • How can electrons hop large distances if they are connected to the atom which is stationary in an lattice?
  • Is Marisa Tomei in the film the Toxic Avenger?
  • Clarification on Vector Space Definition
  • What's so embarrassing in two wearing the same jacket?
  • Earliest example of space travel involving interdimensional 'shortcuts'
  • Is inner speech a quale?
  • Counting them 100 years later
  • Intuitive reason for periods of 2 and 8 in Bott periodicity?
  • Is threatening to go to the police blackmailing?
  • A funny Fantasy short story about a telekinetic who loses his power when he thinks about it

the assignment of application failed error 1274

Follow us on Twitter

Group Policy installation failed error 1274

You’re seeing the dreaded scourge of asynchronous policy processing. It’s not a “feature” (and was default-off in Windows 2000 but default-on in Windows XP and above) and causes exactly what you’re seeing– non-deterministic behavior with processing some types of GPO settings.

In a GPO that applies to that computer, add the following setting:

  • Always wait for the network at computer startup and logon – Enabled

After you set that (and allow the GPO to replicate if you’re in a multi-DC environment), do a “gpupdate /force /boot” on the subject PC. It will reboot and you should see the software installation occur.

The “Always wait for the network at computer startup and logon” slightly slows down the startup and logon because all GPO extensions are allowed to process, but the upside is that all GPO extensions are allowed to process.

Stack Exchange Network

Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Group Policy software installation failing with error %%14

I have created a GPO configured to "assign" \\<AD DNS domain name>\NETLOGON\<file name>.msi and verified that it's applying to the Windows 10 v1809 PC but the actual installation consistently fails.

RSoP reports the following:

Event Viewer reports the following:

  • Found that the error %%14 doesn't seem to be documented online, hence my main reason for posting this.
  • Verified that Group Policy is already configured as recommended for these scenarios ( Specify startup policy processing wait time set to 60 seconds and Always wait for the network at computer startup and logon set to enabled).
  • Verified that the connection between the PC and DC is 1 Gbps
  • Found that manually running the MSI from NETLOGON on the PC works fine.

Update: 2019/06/26 09:29

  • Found that this very GPO applies successfully on 2 other Windows 10 v1809 PCs.
  • Tried deploying 7-Zip's MSI to the affected PC but it fails with the same errors.
  • Found some events that suggested slow DNS initialisation so temporarily removed Webroot SecureAnywhere's DNS Protection Agent but found that doing so didn't make a difference.

Update: 2019/06/26 14:08

  • Enabled Windows Installer logging as per https://support.microsoft.com/en-gb/help/223300/how-to-enable-windows-installer-logging but I couldn't find anything relevant in %tmp% or C:\Windows\System32\config\systemprofile\AppData\Local .
  • active-directory
  • group-policy

mythofechelon's user avatar

This was resolved by .OLD-ing the following registry keys and rebooting:

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt
  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\History
  • HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt
  • HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy\History

You must log in to answer this question.

Not the answer you're looking for browse other questions tagged active-directory group-policy msi ..

  • Featured on Meta
  • Introducing an accessibility dashboard and some upcoming changes to display...
  • We've made changes to our Terms of Service & Privacy Policy - July 2024
  • Announcing a change to the data-dump process

Hot Network Questions

  • What does "contradictions trivialize truth" mean?
  • What tool has a ring on the end of a threaded handle shaft?
  • How to find a simplified sinogram in a paper dictionary
  • apply shift to nodes defined in foreach loop
  • How can the Word be God and be with God simultaneously without creating the meaning of two Gods?
  • Why did Borland ignore the Macintosh market?
  • In Norway, when number ranges are listed 3 times on a sign, what do they mean?
  • Decimal expansion definition of real numbers, constructively
  • Conservation of energy in a mechanical system with a discontinuous potential function
  • Automatically closing a water valve after a few minutes
  • Weird lines in the Aeneid (Book I, lines 444-445)
  • sed (or awk): print captured group or placeholder if it doesn't exist
  • How can one design earplugs so that they provide protection from loud noises, such as explosions or gunfire, while still allowing user to hear voices?
  • How to make a case based on factual evidence that my colleague's writing style for submitted manuscripts has got to be overhauled?
  • Reference for homotopy groups of filtered homotopy colimits
  • BMX Logo and bike type please
  • Flashlight and 6 batteries
  • Refereeing papers by people you are very close to
  • Is there a reason SpaceX does not spiral weld Starship rocket bodies?
  • Remove the Freehub Body from a Omnium Cargo Bike
  • How to filter only active layers in QgsMapLayerComboBox
  • Do there exist Noetherian groups which are not co-Hopfian?
  • Threefold repetition: what's the minimum number of pieces and/or material points required?
  • When can a citizen's arrest of an Interpol fugitive be legal in Washington D.C.?

the assignment of application failed error 1274

Get the Reddit app

A reddit dedicated to the profession of Computer System Administration.

LAPS GPO Help

I am trying to install LAPS through the GPO. I keep getting the errors. I have added the file to our domain logon folder. Same folder that other scripts are ran from. I have given it the same permissions as the other scripts. I have enabled the startup policy processing wait time to 120 seconds. I have also rebooted the PC. Not sure why it continues to fail. I get the following errors:

The assignment of application Local Administrator Password Solution from policy LAPS failed. The error was : %%1274

The removal of the assignment of application Local Administrator Password Solution from policy LAPS failed. The error was : %%2

Failed to apply changes to software installation settings. The installation of software deployed through Group Policy for this user has been delayed until the next logon because the changes must be applied before the user logon. The error was : %%1274

The Group Policy Client Side Extension Software Installation was unable to apply one or more settings because the changes must be processed before system startup or user logon. The system will wait for Group Policy processing to finish completely before the next startup or logon for this user, and this may result in slow startup and boot performance.

Any suggestions? Thanks

By continuing, you agree to our User Agreement and acknowledge that you understand the Privacy Policy .

Enter the 6-digit code from your authenticator app

You’ve set up two-factor authentication for this account.

Enter a 6-digit backup code

Create your username and password.

Reddit is anonymous, so your username is what you’ll go by here. Choose wisely—because once you get a name, you can’t change it.

Reset your password

Enter your email address or username and we’ll send you a link to reset your password

Check your inbox

An email with a link to reset your password was sent to the email address associated with your account

Choose a Reddit account to continue

Event log errors GPO with event id 101,103,108,1112

Lately I see the Event log overflooded by errors apparently related to a GPO failing to apply.

Event id will show errors

Googling around it looks like the error could be thrown when the policies apply asynchronously and the suggestion is to disable this to allow all policies to complete.

Strange is that the error is thrown at night when no computer si logging on/off…

Perhaps this site can give you a few tips:

Thank you Randy, I have read that article already, it explains how to allow policies completion, however I would like to understand why this is happening although no computer is logging in/out and the server is logging these errors in the Event log

A policy was being incorrectly applied to the server! Removed from DC and gone! Thanks

Sorry to piggy back on the thread but Im wondering if you could let me know on how you found that GPO.

It is a GPO that I use for all computers and accidentally was also used for our server.

Could this cause freezing of Windows 10 computers? I have all these errors in my computers that are freezing

No freeze on my side when the error was logged, but as I wrote this ended once I have stopped the policy being applied to the server

Do you think it could cause freezing on Windows 10 pcs?

I have no idea, sorry!

Related Topics

Topic Replies Views Activity
Windows 4 488 April 7, 2022
Windows 4 212 September 2, 2020
Windows ,  ,  8 584 January 13, 2021
Windows 2 143 January 17, 2013
Windows 3 1542 January 23, 2020

the assignment of application failed error 1274

IMAGES

  1. Why do I see an "%%1274" error when deploying Duo via GPO?

    the assignment of application failed error 1274

  2. GPO Software Deployment Failed

    the assignment of application failed error 1274

  3. GPO Software Deployment Failed

    the assignment of application failed error 1274

  4. Application failed to start due to no Qt platform plugin could be

    the assignment of application failed error 1274

  5. How to fix this error? (semicolon missing) · Issue #1274 · mswjs/msw

    the assignment of application failed error 1274

  6. active directory

    the assignment of application failed error 1274

COMMENTS

  1. Group Policy installation failed error 1274

    I'm trying to deploy an MSI via the Group Policy in Active Directory. But these are the errors I'm getting in the System event log after logging in: The assignment of application XStandard from po...

  2. Why do I see an "%%1274" error when deploying Duo via GPO?

    The assignment of application Traps from policy Traps Install failed. The error was : %%1274 Resolution To resolve, follow these steps:

  3. Group Policy installation failed error %%1274

    Failed to apply changes to software installation settings. The installation of software deployed through Group Policy for this user has been delayed until the next logon because the changes must be applied before the user logon.

  4. GPO Software Deployment Errors %%1274 and %%2

    The assignment of application Adobe Reader XI from policy Adobe Reader failed. The error was : %%1274

  5. GPO Software Deployment Failed

    This article gives the fix/solution for GPO Software Deployment Failed - The error was : 2 for the event id 101 and event 103.

  6. Group Policy Application Install Windows 10

    When trying to install a program from group policy on Windows 10 I am receiving an error in event viewer. "The assignment of application failed. The error was: %%65 ...

  7. SOLVED: How to resolve System Event 108 "The error was : %%1274" When

    Published by Ian Matthews on February 1, 2013 Well this is just as annoying as can be but it turns out to be pretty quick to resolve. If you reboot your client PC's but find some software you pushed via Group Policy did not install, you likely are in Asyncronous Policy Processing Hell.

  8. Issues with deplyment via GPO

    The assignment of application FortiMail Spam Sample Submission Plugin from policy Outlook Plugin for FortiMail failed. The error was : %%1274

  9. Deploying .msi application through GPO doesn't work

    I followed along the path indicated by the post: Group Policy installation failed error 1274, however there are two events, one indicating error 1274 and the other one being error %%2.

  10. Group Policy

    The error was : %%1274 Event ID 103 - The removal of the assignment of application OrgPublisher PluginX 11.5 from policy Org Chart plugin - msi deployment failed.

  11. Deploying LAPS

    The error was : %%2 The assignment of application Local Administrator Password Solution x64 from policy CURRENT - LAPS Install failed. The error was : %%1274 Looking up the %%2 error code online, I stumbled on this post: GPO Software Deployment Failed - The error was : %%1274 and %%2

  12. GPO not installing software

    The installation of software deployed through Group Policy for this user has been delayed until the next logon because the changes must be applied before the user logon. The error was : %%1274 The removal of the assignment of application GFI Cloud Agent from policy GFI failed. The error was : %%2

  13. GPO Software Installation Failed.

    The error was : %%1274 EVENT103: The removal of assignment of application Barracuda Message Archiver Outlook Add-In 4.0.31.0 (x64) from policy Barracuda Archiver failed.

  14. GPO failing to install application

    The error was : %%1274 The removal of the assignment of application Vendor Agent from policy Vendor_Agent_Install failed. The error was : %%2 Failed to apply changes to software installation settings.

  15. GPO software deployment will not stop reinstalling

    Why is it installing the software over and over? When I look at Event Viewer for an example PC, I see this: The assignment of application Installed Agent from policy Software_Agent_Install succeeded. The reinstall of application Installed Agent from policy Software_Agent_Install succeeded.

  16. Top 5 Reasons Group Policy Software Installation Is Not Working

    We will figure out why group policy software installation not working! Problem 1: Does the GPO apply? If the software isn't installing on the computer, the first place to start is at the scope tab of your GPO. Basically, if the GPO can't apply to the computer (or user) - the application won't install. You can ensure the GPO is applying ...

  17. group policy

    Never understood why MS localized error -.-, i'll try to translate in english: 101: the assignment of application (app) of gpo (gpo) failed. error: critical error at installation. 103: remove of assignment of application (app) of gpo (gpo) failed. error: critical error at installation. 108: Changes in softwaresettings not applied.

  18. Group Policy installation failed error 1274

    System. Logon. Always wait for the network at computer startup and logon - Enabled. After you set that (and allow the GPO to replicate if you're in a multi-DC environment), do a "gpupdate /force /boot" on the subject PC. It will reboot and you should see the software installation occur. The "Always wait for the network at computer ...

  19. Group Policy software installation failing with error %%14

    Windows failed to apply the Software Installation settings. Software Installation settings might have its own log file. Please click on the "More information" link.

  20. LAPS GPO Help : r/sysadmin

    The assignment of application Local Administrator Password Solution from policy LAPS failed. The error was : %%1274

  21. Event log errors GPO with event id 101,103,108,1112

    Lately I see the Event log overflooded by errors apparently related to a GPO failing to apply. Event id will show errors 101: The assignment of application Google Chrome from policy Chrome for business failed. The err…

  22. Knowledge Base

    Knowledge Base - Palo Alto Networks ... VDOM