Software microsoft windows currentversion group policy

I need to trigger a particular GPO-deployed application to reinstall. In the past I’ve just deleted a certain registry key that tells Windows: «this application has been installed».

But I can’t for the life of me remember where those keys are located in the registry, and searching isn’t turning much up.

Thanks!

asked Feb 10, 2010 at 23:36

Boden's user avatar

Look in:

HKLM\Software\Microsoft\Windows\Current Version\Group Policy\AppMgmt. Find the key that corresponds to the software you’re looking for, and delete it. Then run gpupdate /force and restart.

answered Feb 11, 2010 at 18:51

Boden's user avatar

BodenBoden

4,98812 gold badges49 silver badges70 bronze badges

I believe:

GPO applied to the local computer:

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Group Policy\History

GPO applied to the currently logged on user:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion
  \Group Policy\History

answered Feb 11, 2010 at 2:33

Fergus's user avatar

FergusFergus

1,3139 silver badges19 bronze badges

3

Instead of deleting the key, you can also set the AppState value to 0. The original value should 9 or 17 (with removal option).

Get-ItemProperty `
-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt\*" `
| ForEach-Object {
  if ($_. "Deployment Name" -match '^<the deployment name>$') {
    $_

    $answer = Read-Host "Set value?"

    if ( $answer -match "(?i)Y") {
      New-ItemProperty $_.PSPath -Name AppState -Value 0 -Force
    }
  }
}

PS: I wanted to add a comment to the accepted answer but I do not have 50 reputations as of now, so I am adding an answer here.

answered Nov 12, 2020 at 8:43

puravidaso's user avatar

Not a direct answer, but if you go into the GPO and right click the Application object go to All Tasks -> Redeploy. That will well redeploy the application.

answered Feb 11, 2010 at 18:55

Zypher's user avatar

ZypherZypher

37.4k5 gold badges53 silver badges95 bronze badges

1

You must log in to answer this question.

Not the answer you’re looking for? Browse other questions tagged

.

I need to trigger a particular GPO-deployed application to reinstall. In the past I’ve just deleted a certain registry key that tells Windows: «this application has been installed».

But I can’t for the life of me remember where those keys are located in the registry, and searching isn’t turning much up.

Thanks!

asked Feb 10, 2010 at 23:36

Boden's user avatar

Look in:

HKLM\Software\Microsoft\Windows\Current Version\Group Policy\AppMgmt. Find the key that corresponds to the software you’re looking for, and delete it. Then run gpupdate /force and restart.

answered Feb 11, 2010 at 18:51

Boden's user avatar

BodenBoden

4,98812 gold badges49 silver badges70 bronze badges

I believe:

GPO applied to the local computer:

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Group Policy\History

GPO applied to the currently logged on user:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion
  \Group Policy\History

answered Feb 11, 2010 at 2:33

Fergus's user avatar

FergusFergus

1,3139 silver badges19 bronze badges

3

Instead of deleting the key, you can also set the AppState value to 0. The original value should 9 or 17 (with removal option).

Get-ItemProperty `
-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt\*" `
| ForEach-Object {
  if ($_. "Deployment Name" -match '^<the deployment name>$') {
    $_

    $answer = Read-Host "Set value?"

    if ( $answer -match "(?i)Y") {
      New-ItemProperty $_.PSPath -Name AppState -Value 0 -Force
    }
  }
}

PS: I wanted to add a comment to the accepted answer but I do not have 50 reputations as of now, so I am adding an answer here.

answered Nov 12, 2020 at 8:43

puravidaso's user avatar

Not a direct answer, but if you go into the GPO and right click the Application object go to All Tasks -> Redeploy. That will well redeploy the application.

answered Feb 11, 2010 at 18:55

Zypher's user avatar

ZypherZypher

37.4k5 gold badges53 silver badges95 bronze badges

1

You must log in to answer this question.

Not the answer you’re looking for? Browse other questions tagged

.

Воскресенье, 26 — Апрель — 2015

Централизованно устанавливать программы в домене Active Directory можно либо средствами групповых политик (Group Policy), либо инструментарием наподобие System Center Configuration Manager. Но SCCM — мероприятие недешёвое, поэтому весомая часть системных администраторов распространяет MSI-пакеты политиками. Однако, установка политиками обладает рядом существенных недостатков:

  1. Если инсталляция не удалась с первого раза, она никогда не будет исполнена до конца. Причины сбоя установки могут быть разными, но политика так или иначе создаст в реестре клиентской машины запись «Объект политики с таким-то номером отработал, дело можно закрыть». Идентификатор объекта вы можете найти в ключе HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt. Получается, системе безразлично, нормально ли установилась программа — она регистрирует лишь факт исполнения политики, чтобы потом к этому вопросу больше уже не возвращаться.
  2. Если так случилось, что установленную политикой программу кто-то убрал вручную, она не будет возвращена на место автоматически. Проблема известная, вот где я нашёл объяснение, когда столкнулся с ней впервые: https://social.technet.microsoft.com/Forums/windowsserver/en-US/82f1e144-78a3-4446-8aaf-18843c890cdc/force-reinstall-of-applications-deployed-by-software-gpo-after-uninstall. Причина всё та же, что в пункте номер раз.
  3. Иногда требуется задавать особые условия установки или проверки предварительных условий, которые стандартные политики не поддерживают. Например, при инсталляции Oracle VirtualBox добавить сертификат доверенного издателя:
"%~dp0\cert\VBoxCertUtil.exe" add-trusted-publisher "%~dp0\cert\oracle-vbox.cer"

Для решения этих проблем я написал скрипты распространения и убирания программ. Стандартная схема централизованного распространения может выглядеть так:

  1. На одном из контроллеров в шаринге NetLogon создаём папку Deployment, внутри которой размещаем папки всех нужных приложений, например:
    \\DC-Riga.WindowsNT.LV\NetLogon\Deployment\7-Zip
    \\DC-Riga.WindowsNT.LV\NetLogon\Deployment\Skype
    \\DC-Riga.WindowsNT.LV\NetLogon\Deployment\FrontMotion_Firefox
    Такое местоположение удобно тем, что контроллеры реплицируют содержимое папки NetLogon между собой, а путь инсталляции можно назначить в виде доменного имени \\WindowsNT.LV\NetLogon\Deployment; в результате, клиенты выполнят установку с ближайшего контроллера.
  2. Внутри папки конкретного приложения сохраняем скрипты установки и убирания приложения:
    \…\7-ZIP
    \…\7-ZIP\x64\7z920-x64.msi
    \…\7-ZIP\x86\7z920-x86.msi
    \…\7-ZIP\Install_7Zip.bat
    \…\7-ZIP\Uninstall_7Zip.bat
  3. Создаём отдельные объекты групповых политик Applications 7-Zip Install и Applications 7-Zip Uninstall, в которых указываем скрипты в секции Startup Scripts. Политики пристёгиваем к нужному контейнеру в Active Directory (например, к корню домена или только к требуемым департаментам). Можно создать группы безопасности, куда внести учётные записи нужных машин, затем разрешить применять политики только этим группам.

GPO_Deployment

Теперь собственно скрипт установки на простом примере 7-Zip:

rem Application Install - 7-Zip
set Package_Name_x86=x86\7z920.msi
set Package_Name_x64=x64\7z920-x64.msi
set MSI_Product_Code_x86={23170F69-40C1-2701-0920-000001000000}
set MSI_Product_Code_x64={23170F69-40C1-2702-0920-000001000000}
set Installation_Parameters=
set Desired_Version=0x9140000
set Detected_Version=None
:Check_if_already_installed_x64_on_x64
REG QUERY HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\%MSI_Product_Code_x64%
if not %ErrorLevel%==0 goto Check_x86_on_x86
for /f "tokens=2,*" %%a in ('REG QUERY HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\%MSI_Product_Code_x64% /v Version ^| findstr Version') do set Detected_Version=%%b
if /i (%Detected_Version%)==(%Desired_Version%) goto End
goto Install
:Check_if_already_installed_x86_on_x86
REG QUERY HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\%MSI_Product_Code_x86%
if not %ErrorLevel%==0 goto Check_x86_on_x64
for /f "tokens=2,*" %%a in ('REG QUERY HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\%MSI_Product_Code_x86% /v Version ^| findstr Version') do set Detected_Version=%%b
if /i (%Detected_Version%)==(%Desired_Version%) goto End
goto Install
:Check_if_already_installed_x86_on_x64
REG QUERY HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\%MSI_Product_Code_x86%
if not %ErrorLevel%==0 goto Install
for /f "tokens=2,*" %%a in ('REG QUERY HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\%MSI_Product_Code_x86% /v Version ^| findstr Version') do set Detected_Version=%%b
if /i (%Detected_Version%)==(%Desired_Version%) goto End
:Install
if /i exist "C:\Program Files (x86)" goto Install_x64
:Install_x86
xcopy /r /y "%~dp0%Package_Name_x86%" "%Temp%\%Package_Name_x86%*"
msiexec /i "%Temp%\%Package_Name_x86%" %Installation_Parameters% /qn
del /f /q "%Temp%\%Package_Name_x86%"
goto End
:Install_x64
msiexec /i "%~dp0%Package_Name_x64%" %Installation_Parameters% /qn
:End

Cкрипт убирания программы:

rem Application Uninstall - 7-Zip
set MSI_Product_Code_x86={23170F69-40C1-2701-0920-000001000000}
set MSI_Product_Code_x64={23170F69-40C1-2702-0920-000001000000}
set Installation_Parameters=/norestart
:Check_x64_on_x64
REG QUERY HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\%MSI_Product_Code_x64%
if %ErrorLevel%==0 msiexec /x %MSI_Product_Code_x64% %Installation_Parameters% /qn
:Check_x86_on_x86
REG QUERY HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\%MSI_Product_Code_x86%
if %ErrorLevel%==0 msiexec /x %MSI_Product_Code_x86% %Installation_Parameters% /qn
:Check_x86_on_x64
REG QUERY HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\%MSI_Product_Code_x86%
if %ErrorLevel%==0 msiexec /x %MSI_Product_Code_x86% %Installation_Parameters% /qn
:End

Дополнительные замечания:

  1. Скрипт установки требует настройки шести переменных: Package_Name_x86, Package_Name_x64, MSI_Product_Code_x86, MSI_Product_Code_x64, Installation_Parameters, Desired_Version, для каждой программы они уникальны. Коды MSI и версию программы я выясняю отдельно, устанавливая программу вручную на тестовых системах.
  2. Разумеется, инсталляции можно запускать не с контроллеров, а из выделенной точки распространения вида \\DeploymentServer.WindowsNT.LV. Учтите, что компьютеры считывают инсталляционные файлы от лица ComputerName$/SYSTEM — убедитесь, что группы Domain Computers и Domain Controllers имеют разрешения чтения как на Share, так и на NTFS.
  3. В любом случае, убедитесь, что путь к выбранному репозиторию добавлен в «белые списки» программ (Application Whitelisting), иначе установка может отказать и по этой причине.
  4. Команда XCopy в %Temp% нужна только для Windows XP/2003, так как на этих системах MSIExec не умеет инсталлировать с сетевых ресурсов. На более новых системах копировать исходник на локальную машину не нужно, можно выполнять команду msiexec напрямую из %~dp0, как это сделано в 64-разрядном блоке.
  5. Загрузочные скрипты на Windows 8 по умолчанию не работают. Причина: Windows 8 на самом деле не выключается (не выполняет Shutdown) — вместо этого, система всегда пытается выполнить Hybrid Sleep. Как окончательное решение, пришлось просто запретить Hybrid Sleep политиками для всех Windows 8.
  6. Для подсчёта процента компьютеров с успешно установленной программой (Compliance) используйте Group Policy Preferences: https://blog.windowsnt.lv/2014/09/22/srp-compliance-report-russian/

Привет. Наверняка вы обращали внимание, что если вы запускаете bat скрипт из сетевой папки, то у вас выскакивает предупреждение безопасности.

Добавление сайтов в зоны безопасности IE. Ошибка при запуске скрипта по сети

Либо если вы заходите на какой-то сайт, например онлайн банк-клиент, то у этого сайта очень многие элементы заблокированы. Решить подобные проблемы можно, если добавить необходимые доменные имена ресурсов в определенные зоны безопасности в Internet Explorer. Как правило — это местная интрасеть, либо надежные сайты.

И если с добавлением единичных сайтов, для одного пользователя проблем нет, то в массовых случаях нужно что-то придумывать, что б не бегать по всем компьютерам.

Сегодня хочу показать вам как можно автоматически добавлять домены и сайты в зоны безопасности, при помощи групповых политик.

Покажу вам 2 способа.

Первый способ – воспользуемся административными шаблонами.

Для этого в редакторе групповых политик идем в User Settings – Administrative Templates – Windows Components – Internet Explorer – Internet Control Panel – Security Page. Тут нам нужен параметр Site to Zone Assignment List.

Добавление сайтов в зоны безопасности IE. Редактор групповой политики.

Включаем его, и задаем необходимые зоны. В поле Value name вписываем, например dc.test.loc или http://dc.test.loc, в зависимости от ваших нужд. Так же в Value можно задать IP адрес, или диапазон IP адресов. В поле Value – задаем цифровое значение, где 1 –Местная Интрасеть (Intranet Zone), 2 – Доверенные Сайты (Trusted Sites), 3 – Зона Интернета (Internet Zone) и 4 – Небезопасные Сайты (Restricted Sites).

Добавление сайтов в зоны безопасности IE. Добавляем зоны в список, в параметре групповой политики.

После применения этой политики в свойствах зоны будут те домены, которые вы указали, но при этом пользователю самостоятельно будет запрещено редактировать эти зоны.

Добавление сайтов в зоны безопасности IE. Зоны добавлены через GPO. Пользователю запрещено менять.

Если же вам нужно распространить зоны и при этом, дать пользователям возможность еще и самостоятельно добавлять необходимые им сайты, тогда нужно распространять их через реестр, а не через административные шаблоны.

Второй способ:

Для этого опять же идем в редактор групповой политики и идем по пути User Configuration – Preferences – Windows Settings – Registry. Тут добавляем новый элемент реестра.

Добавление сайтов в зоны безопасности IE. Добавляем значения в реестр.

Для области указываем HKEY_CURRENT_USER, для пути – Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\test.loc\dc Соотвественно тут я добавляю домен host.test.loc. Если нужно добавить целый домен, тогда добавляйте в конце строки просто \test.loc

В поле Value name указываем протокол (http, https и т.д.), если необходимо добавить все протоколы, тогда указываем *.

Value Type должен быть REG_DWORD.

В Value Data должна быть цифра. Цифры тут такие же, как и для зон при задании через административные шаблоны (1 –Местная Интрасеть (Intranet Zone), 2 – Доверенные Сайты (Trusted Sites), 3 – Зона Интернета (Internet Zone) и 4 – Небезопасные Сайты (Restricted Sites)).

Добавление сайтов в зоны безопасности IE. Добавляем значения в реестр. Указываем нужный домен.

Если вы хотите, чтобы для зоны стояла галка – Для всех сайтов зоны требуется проверка подлинности серверов (https), то нужно добавить следующую запись в реестр, так же для ветки пользователя (HKCU):

Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1\

Value name – Flags

Value type – REG_DWORD

Value Data – 71 – для того, что бы галка стояла, и 67 – что бы была отключена.

Добавление сайтов в зоны безопасности IE. Добавляем значения в реестр. Ставим галку, для обязательной проверки подлинности.

Если вы хотите добавить диапазон IP адресов, тогда нужно добавлять 2 параметра.

1ый:

SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges\local

Value name — :Range

Value type – REG_SZ

Value Data – 192.168.1.0-254

Добавление сайтов в зоны безопасности IE. Добавляем значения в реестр. Добавляем значения для диапазона адресов.

2ой:

SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges\local

Value name — * (или нужный вам протокол)

Value type – REG_DWORD

Value Data – 1 (номер зоны)

Добавление сайтов в зоны безопасности IE. Добавляем значения в реестр. Выбираем зону для диапазона IP адресов.

Надеюсь информация окажется вам полезной.

Getting This Program Is Blocked by Group Policy error while trying to open an application or while performing a Task on Windows 7/8/10 computer? This error message states that the particular application can’t be opened because this Program is Blocked by Group Policy. The problem can be related to opening Antivirus software, Software on USB Device, or while trying to access Windows executable files. Depending on users system configuration they can face the following error:

The program is blocked by group policy. For more information contact your system administrator.  (Error Code: 0x00704ec)

This problem mostly Cause Virus malware or ransomware infection. User who enables the Software Restriction Policy and then forgets about it or when another application. Or some bug somehow allows the Software Restriction Policy etc.

Contents

  • 1 Fix This Program Is Blocked by Group Policy
    • 1.1 Run CCleaner and Malwarebytes
    • 1.2 Perform a Clean Boot
    • 1.3 Disable the Software Restriction Policy
    • 1.4 Tweak and Delete Some Registry Keys
    • 1.5 Disable Symantec Endpoint Protection
    • 1.6 Create a New User Account
    • 1.7 Remove the Domain Group Policy From Machine

After understanding the problem and the reason behind the issue let’s perform the below steps to get rid of This Program Is Blocked by Group Policy error on Windows 10/8.1 and 7 computers. Create A system restore point is the best exercise before Apply bellow solutions.

Run CCleaner and Malwarebytes

To Deal with issues like This First make sure your system is fully optimized, Not infected with virus or malware infection and have installed the latest windows updates. First, check and install the latest windows updates from settings -> update & security -> windows update and check for update this will check and install the latest windows updates which help to fix system bugs. Download and install CCleaner & good antivirus like Malwarebytes and perform full system scan to check and remove harmful files. Again with help of the Ccleaner tool clear system junk, Cache, Cookies, system error files etc and Fix missing, Broken registry errors.

Also, Check And Fix Corrupted system files using the System file checker utility then After Restart your PC to get a fresh start. This would Fix This Program Is Blocked by Group Policy error but if it didn’t then continue to the next method.

Perform a Clean Boot

Again if any 3rd party software conflicts with other applications, this can cause the application block error. In order to Fix This Program Is Blocked by Group Policy error, you need to perform a clean boot on your PC which helps to find and diagnose the issue.

Disable the Software Restriction Policy

Open Command Prompt As Administrator and type below command to Disable the Software Restriction Policy.

REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\Safer\CodeIdentifiers\ /v DefaultLevel /t REG_DWORD /d 0x00040000 /f

Or Simply open Notepad, And type REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\Safer\CodeIdentifiers\ /v DefaultLevel /t REG_DWORD /d 0x00040000 /f. Then press Ctrl + s to save the file, Select the desire location to save the file. Then change the Save as the type and then click on All Files and name the file as your wish but end it with a .BAT extension. For example, Disable the Software Restriction Policy.bat and click on Save.

Now Navigate to the location where you saved the .BAT file and double click on it to launch it. If asked to confirm the action in a popup, confirm it.

The .BAT file will launch a Command Prompt and execute the command programmed into it. This only takes a couple of seconds on even the slowest of computers. Once the .BAT file is done running the command and the Command Prompt has been closed. Now restart your computer to give a fresh start and check This Program Is Blocked by Group Policy is resolved.

Tweak and Delete Some Registry Keys

Note: registry Is an essential part of windows, any wrong modification causes a serious issue. So we recommend backup current registry before make any changes.

Press the Windows key + R, Type regedit and hit the enter key. Now on the left pane of Registry Editor navigate to the following directory :

HKEY_LOCAL_MACHINE > Software > Policies

In the left pane, locate and right-click on the Microsoft sub-key under the Policies registry key, click on Delete in the context menu and click on Yes in the resulting popup to confirm the action.

In the left pane of the Registry Editor, navigate to the following directory:

HKEY_CURRENT_USER > Software > Policies

In the left pane, locate and right-click on the Microsoft sub-key under the Policies registry key, click on Delete in the context menu and click on Yes in the resulting popup to confirm the action.

In the left pane of the Registry Editor, navigate to the following directory:

HKEY_CURRENT_USER > Software > Microsoft Windows > CurrentVersion

In the left pane, locate and right-click on the Group Policy Objects sub-key under the CurrentVersion registry key, click on Delete in the context menu and click on Yes in the resulting popup to confirm the action.

In the left pane of the Registry Editor, navigate to the following directory:

HKEY_CURRENT_USER > Software > Microsoft Windows > CurrentVersion

In the left pane, locate and right-click on the Policies sub-key under the CurrentVersion registry key, click on Delete in the context menu and click on Yes in the resulting popup to confirm the action. That’s All Now Close the Registry Editor, and Restart the computer.

Disable Symantec Endpoint Protection

Also, Some Users Report Disable Symantec Endpoint protection helps them to fix applications blocked by group policy issue. Symantec Endpoint Protection is an Application and Device Control function where there is a setting to Block All Programs from running from removable media. Now Symantec edits the registry in order to block programs that explain why users see a generic Windows error rather than from Symantec itself.

Launch the Symantec Endpoint Protection Manager -> navigate to Application and Device
Control -> on left-hand menu click on Application Control. Here Make sure to uncheck “Block programs from running from removable drives.“ Save changes and close Symantec Endpoint Protection Manager. Now Reboot your PC  and check the issue resolved.

Create a New User Account

If all the above methods failed to fix the issue, Then Create A new User account, With Fresh Users profile check the issue get resolved or not. To create a new user account open Settings -> Accounts -> Family & other people tab -> click Add someone else to this PC under Other people.

Now click I don’t have this person’s sign-in information at the bottom and select Add a user without a Microsoft account at the bottom.

Type the username and password for the new account, click Next and finish. Then after Sign in with this new user account check, there is no more This Program Is Blocked by Group Policy Error while running applications. That means the problem with old users Account settings or the user profile get corrupted. Anyway, transfer your files to the new account and delete the old account in order to complete the transition to this new account.

Remove the Domain Group Policy From Machine

You Are Reading this means still your problem not resolved. If your machine is on a Domain network and you are getting This Program Is Blocked by Group Policy, Then we are going to remove the Domain Group policy form the machine. To Do this open Windows Registry Editor by press win + R, Type regedit and hit enter. Then navigate to the following key.

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft

Here select the Microsoft folder, right-click on it and select Delete.

Next Similarly, navigate to the following :

Computer\HKEY_CURRENT_USER\Software\Policies\Microsoft

Right-click on Microsoft folder and select Delete.

After That navigate to bellow keys and delete Group Policy and Policies keys.

Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy

Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies

That’s All Now close Registry Editor and reboot your PC to take effect the save changes. After That check, i hope there is no more Program or Application Block Error.

These are the most applicable solutions to fix this Program Is Blocked by Group Policy Error on Windows 10 Computer. Face any difficulty while apply the above solutions, Or have any queries about the post feel free to discuss on the comments below.

Also Read  

  • Best Registry Tweaks To Enable Hidden Features on Windows 10
  • Fix Application Has Been Blocked From Accessing Graphics Hardware
  • Disable Windows 10 startup programs To fix slow startup and boot faster
  • 3 ways to Stop Windows 10 From Automatically Updating Drivers
  • Enable Group Policy Editor in Home and Starter Editions of Windows

  • Sndvol32 exe windows xp скачать
  • Software microsoft windows currentversion internet settings proxyserver
  • Software distribution как очистить windows 10
  • Snipping tool windows 10 что это
  • Snaptube скачать для компьютера бесплатно windows 10 для windows