16 Commits
v1.0 ... master

Author SHA1 Message Date
  Styris 8fb460ba4f Update 'README.md' 3 months ago
  Styris bc8cec4dab Update 'README.md' 3 months ago
  Styris 8b04e77b8f Update 'README.md' 3 months ago
  Styris d5778d8e47 Update 'README.md' 3 months ago
  Styris 8688290afd Update README 5 months ago
  Styris 6ed9ff89f6 Update README 5 months ago
  Styris 09cece9a2b Release v1.4 5 months ago
  Joe 1d8824361f Remove Usage note from README 6 months ago
  Joe fe6a69b0b9 Release v1.3 6 months ago
  Joe 261ffbfe3b Release v1.3 6 months ago
  Joe 132207db69 Update README 7 months ago
  Joe c77ddc8b92 Update README 8 months ago
  Joe e9826f2421 Update README 8 months ago
  Joe 7e25b9492e Update to v1.2 8 months ago
  Joe 8975759622 Update 'screenshot.png' 9 months ago
  Joe 2d94f7cc70 Update to v1.1 9 months ago
3 changed files with 3984 additions and 3798 deletions
Split View
  1. +37
    -7
      README.md
  2. +3947
    -3791
      amecs.cmd
  3. BIN
      screenshot.png

+ 37
- 7
README.md View File

@ -6,17 +6,23 @@ Script for automating a large assortment of AME related actions.
## Usage
You can download the script by going to the [latest release](https://git.ameliorated.info/Joe/amecs/releases/latest) and selecting `amecs.zip` from the **Downloads** section. Once downloaded, simply extract `amecs.zip` and run `amecs.cmd`.
You can download the script by going to the [latest release](https://git.ameliorated.info/Styris/amecs/releases/latest) and selecting `amecs.zip` from the **Downloads** section. Once downloaded, simply extract `amecs.zip` and run `amecs.cmd`.
Alternatively, you could clone the repository:
git clone https://git.ameliorated.info/Joe/amecs.git
git clone https://git.ameliorated.info/Styris/amecs.git
Once cloned, simply run `amecs.cmd`.
## Summary
As part of the amelioration process, certain UI elements, such as the **Region and language** page in Windows Settings, have been removed, and require alternative ways to execute the tasks. This script fills in those gaps, and allows for automating a large variety of customization tasks.
If you prefer manually executing commands for some of these tasks without a script, you can go through the step-by-step guides on [AME Guides](https://t.me/AMEGuides).
## Primary Functions
There are many actions in AME that require commands, the following functions essentially work as an interactive user interface for those.
There are a variety of tasks you can easily perform with amecs. Below, we provide an explanation for each of them, as well as the commands underlying the features.
#### Username/Password
@ -62,7 +68,7 @@ Or the following for de-elevating the user:
This function allows for changing the user's display language.
Firstly, it prompts the user to download a portion of a ~5.5GB language pack ISO file. Unfortunately, Microsoft no longer publicly distributes individual language pack files, so this is necessary.
Firstly, it prompts the user to download a portion of a \~5.5GB language pack ISO file. Unfortunately, Microsoft no longer publicly distributes individual language pack files, so this is necessary.
Once the ISO is downloaded, it extracts the ISO file, and installs the language pack for the selected display language using the following commands:
@ -166,18 +172,42 @@ Or the following for disabling hibernation:
powercfg /HIBERNATE OFF
#### Notification Center
This function allows for enabling or disabling the Notification Center in the bottom right of the taskbar.
At its core, it uses the following command:
reg add "HKU\<User's SID>\Software\Policies\Microsoft\Windows\Explorer" /v DisableNotificationCenter /t REG_DWORD /d 0 /f
Or the following for disabling the Notification Center:
reg add "HKU\<User's SID>\Software\Policies\Microsoft\Windows\Explorer" /v DisableNotificationCenter /t REG_DWORD /d 1 /f
#### Desktop Notifications
This function allows for enabling or disabling desktop toast notifications.
At its core, it uses the following command:
reg add "HKU\<User's SID>\SOFTWARE\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 1 /f
Or the following for disabling desktop notifications:
reg add "HKU\<User's SID>\SOFTWARE\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 0 /f
#### Windows Script Host (Legacy)
This function allows for enabling or disabling Windows Script Host (WSH). WSH is necessary for some programs.
At its core, the following commands are used:
reg add "HKEY_USERS\<User's SID>\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 1 /f
reg add "HKU\<User's SID>\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 1 /f
Or the following for disabling WSH:
reg add "HKEY_USERS\<User's SID>\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 0 /f
reg add "HKU\<User's SID>\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 0 /f
#### Visual Basic Script (Legacy)
@ -204,7 +234,7 @@ Or the following for disabling NCSI Active Probing:
reg add "HKLM\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet" /v EnableActiveProbing /t REG_DWORD /d 0 /f
#### New User
#### New User (Beta)
This function allows for creating partially functional and pre-configured users in Windows AME.


+ 3947
- 3791
amecs.cmd
File diff suppressed because it is too large
View File


BIN
screenshot.png View File

Before After
Width: 732  |  Height: 590  |  Size: 32 KiB Width: 732  |  Height: 590  |  Size: 30 KiB

Loading…
Cancel
Save