Compare commits
33 Commits
24.07.18
...
eb728ed8eb
Author | SHA1 | Date | |
---|---|---|---|
eb728ed8eb | |||
837596b2c7 | |||
a8df0d3ede | |||
e86533c7e1 | |||
026ebc411a | |||
69d95ff9bb | |||
b6ca69d93f | |||
ff1ecbd1e3 | |||
87c252166f | |||
c91bca5e69 | |||
11b64623e9 | |||
d1eedd0d74 | |||
8fccb8b749 | |||
7065e2ac38 | |||
60db65b5a6 | |||
ad6dcca76e | |||
17faeef0d6 | |||
14b3c859ab | |||
841de3699f | |||
fc93ec16d6 | |||
b3fc21d7e4 | |||
fc70053789 | |||
3719b015d4 | |||
94abf3fd66 | |||
f5f506b9c5 | |||
bdf9c8378c | |||
e4bf33e3ab | |||
f398f9a63b | |||
959c85f57b | |||
f8c3fda0e7 | |||
9e3faced80 | |||
2eb9e4ea0a | |||
376a2205cd |
9
.gitattributes
vendored
@ -1,12 +1,3 @@
|
|||||||
* text=auto
|
|
||||||
|
|
||||||
*.ps1 text eol=crlf
|
|
||||||
*.json text eol=crlf
|
|
||||||
*.cfg text eol=crlf
|
|
||||||
|
|
||||||
*.png binary
|
|
||||||
*.jpg binary
|
|
||||||
|
|
||||||
config/* diff
|
config/* diff
|
||||||
config/applications.json diff
|
config/applications.json diff
|
||||||
*.json diff
|
*.json diff
|
11
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -4,23 +4,24 @@ about: Create a report to help us improve
|
|||||||
title: ''
|
title: ''
|
||||||
labels: ''
|
labels: ''
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Describe the bug
|
**Describe the bug**
|
||||||
A clear and concise description of what the bug is.
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
## To Reproduce
|
**To Reproduce**
|
||||||
Steps to reproduce the behavior:
|
Steps to reproduce the behavior:
|
||||||
1. Go to '...'
|
1. Go to '...'
|
||||||
2. Click on '....'
|
2. Click on '....'
|
||||||
3. Scroll down to '....'
|
3. Scroll down to '....'
|
||||||
4. See error
|
4. See error
|
||||||
|
|
||||||
## Expected behavior
|
**Expected behavior**
|
||||||
A clear and concise description of what you expected to happen.
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
## Screenshots
|
**Screenshots**
|
||||||
If applicable, add screenshots to help explain your problem.
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
## Additional context
|
**Additional context**
|
||||||
Add any other context about the problem here.
|
Add any other context about the problem here.
|
||||||
|
36
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,36 +0,0 @@
|
|||||||
# Pull Request
|
|
||||||
|
|
||||||
## Title
|
|
||||||
[Provide a succinct and descriptive title for the pull request.]
|
|
||||||
|
|
||||||
## Type of Change
|
|
||||||
- [ ] New feature
|
|
||||||
- [ ] Bug fix
|
|
||||||
- [ ] Documentation update
|
|
||||||
- [ ] Refactoring
|
|
||||||
- [ ] Hotfix
|
|
||||||
- [ ] Security patch
|
|
||||||
- [ ] UI/UX improvement
|
|
||||||
|
|
||||||
## Description
|
|
||||||
[Provide a detailed explanation of the changes you have made. Include the reasons behind these changes and any relevant context. Link any related issues.]
|
|
||||||
|
|
||||||
## Testing
|
|
||||||
[Detail the testing you have performed to ensure that these changes function as intended. Include information about any added tests.]
|
|
||||||
|
|
||||||
## Impact
|
|
||||||
[Discuss the impact of your changes on the project. This might include effects on performance, new dependencies, or changes in behaviour.]
|
|
||||||
|
|
||||||
## Issue related to PR
|
|
||||||
[What issue/discussion is related to this PR (if any)]
|
|
||||||
- Resolves #
|
|
||||||
|
|
||||||
## Additional Information
|
|
||||||
[Any additional information that reviewers should be aware of.]
|
|
||||||
|
|
||||||
## Checklist
|
|
||||||
- [ ] My code adheres to the coding and style guidelines of the project.
|
|
||||||
- [ ] I have performed a self-review of my own code.
|
|
||||||
- [ ] I have commented my code, particularly in hard-to-understand areas.
|
|
||||||
- [ ] I have made corresponding changes to the documentation.
|
|
||||||
- [ ] My changes generate no errors/warnings/merge conflicts.
|
|
9
.github/dependabot.yml
vendored
@ -1,9 +0,0 @@
|
|||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "github-actions"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "weekly"
|
|
||||||
ignore:
|
|
||||||
- dependency-name: "actions/stale"
|
|
||||||
versions: '>= 9'
|
|
30
.github/workflows/close-discussion.yml
vendored
@ -1,30 +0,0 @@
|
|||||||
name: Close Discussion on PR Merge
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types: [closed]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
closeDiscussion:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Check if PR was merged
|
|
||||||
if: github.event.pull_request.merged == true
|
|
||||||
run: echo "PR was merged"
|
|
||||||
|
|
||||||
- name: Extract Discussion Number
|
|
||||||
if: github.event.pull_request.merged == true
|
|
||||||
id: extract-discussion
|
|
||||||
run: |
|
|
||||||
echo "discussion=$(echo '${{ github.event.pull_request.body }}' | grep -oP '(?<=Resolves #)\d+')" >> $GITHUB_OUTPUT
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Close the discussion
|
|
||||||
if: github.event.pull_request.merged == true && steps.extract-discussion.outputs.discussion
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
DISCUSSION_ID: ${{ steps.extract-discussion.outputs.discussion }}
|
|
||||||
run: |
|
|
||||||
curl -X PATCH -H "Authorization: token $GITHUB_TOKEN" \
|
|
||||||
-d '{"state": "closed"}' \
|
|
||||||
"https://api.github.com/repos/${{ github.repository }}/discussions/${DISCUSSION_ID}"
|
|
105
.github/workflows/close-old-issues.yaml
vendored
@ -4,36 +4,91 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * *' # Run daily
|
- cron: '0 0 * * *' # Run daily
|
||||||
workflow_dispatch: # This line enables manual triggering
|
workflow_dispatch: # This line enables manual triggering
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
close-issues:
|
close-issues:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
issues: write # Ensure necessary permissions for issues
|
issues: write # Ensure necessary permissions for issues
|
||||||
pull-requests: none
|
|
||||||
contents: none
|
|
||||||
steps:
|
steps:
|
||||||
- name: Close inactive issues
|
- name: Close inactive issues
|
||||||
uses: actions/stale@v8
|
uses: actions/github-script@v7
|
||||||
with:
|
with:
|
||||||
# A list of labels to reference when looking through issues,
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# and only when one (or even more) of these labels are found..
|
script: |
|
||||||
# then skip this issue, and never try to stale and/or close it.
|
const octokit = github;
|
||||||
exempt-issue-labels: "Keep Issue Open"
|
|
||||||
# Split it into two weeks, after one week the issue will be marked as stale,
|
// Get the repository owner and name
|
||||||
# after another week have pasted without any update.. the issue will then be closed.
|
const { owner, repo } = context.repo;
|
||||||
days-before-issue-stale: 7
|
|
||||||
days-before-issue-close: 7
|
// Define the inactivity period (14 days)
|
||||||
# NEVER mark PRs as Stale or Close + this workflow should never have write permissions on PRs, EVER!
|
const inactivityPeriod = new Date();
|
||||||
days-before-pr-stale: -1
|
inactivityPeriod.setDate(inactivityPeriod.getDate() - 14);
|
||||||
days-before-pr-close: -1
|
|
||||||
# Sends a message for both the Stale and Close events of an issue.
|
const labelKeepIssue = 'Keep Issue Open';
|
||||||
stale-issue-message: "This issue was marked as stale because it has been inactive for 7 days"
|
|
||||||
close-issue-message: "This issue was closed because it has been inactive for 7 days since it was marked as stale"
|
try {
|
||||||
# Increase this value if the project receives a lot of
|
// Get all open issues with pagination
|
||||||
# PRs (yes.. apparently they're processed no matter what) & Issues.
|
for await (const response of octokit.paginate.iterator(octokit.rest.issues.listForRepo, {
|
||||||
# Default value for it (according to the docs) is 30
|
owner,
|
||||||
operations-per-run: 200
|
repo,
|
||||||
# Make this field equal true if you want to test your configuration if it works correctly or not
|
state: 'open',
|
||||||
debug-only: false
|
})) {
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
const issues = response.data;
|
||||||
|
|
||||||
|
// Close issues inactive for more than the inactivity period
|
||||||
|
for (const issue of issues) {
|
||||||
|
let closeIssue = true;
|
||||||
|
|
||||||
|
// Get all Labels of issue, and compared each label with the labelKeepIssue const variable
|
||||||
|
try {
|
||||||
|
const respondIssueLabels = await octokit.request("GET /repos/{owner}/{repo}/issues/{issue_number}/labels", {
|
||||||
|
owner: owner,
|
||||||
|
repo: repo,
|
||||||
|
issue_number: issue.number
|
||||||
|
});
|
||||||
|
const labels = respondIssueLabels.data;
|
||||||
|
|
||||||
|
for (let i = 0; i < labels.length; i++) {
|
||||||
|
const label = labels[i]
|
||||||
|
if (label.name === labelKeepIssue) {
|
||||||
|
console.log(`Issue #${issue.number} will not be closed`);
|
||||||
|
closeIssue = false;
|
||||||
|
break; // Break from the loop, no need to check the remaining Labels.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error(`Error while Fetching Labels for Issue #${issue.number}, Error: ${error}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!closeIssue) {
|
||||||
|
continue; // Skip the next bit of code
|
||||||
|
}
|
||||||
|
|
||||||
|
const lastCommentDate = issue.updated_at;
|
||||||
|
if (new Date(lastCommentDate) < inactivityPeriod) {
|
||||||
|
try {
|
||||||
|
// Close the issue
|
||||||
|
await octokit.rest.issues.update({
|
||||||
|
owner,
|
||||||
|
repo,
|
||||||
|
issue_number: issue.number,
|
||||||
|
state: 'closed',
|
||||||
|
});
|
||||||
|
|
||||||
|
// Add a comment
|
||||||
|
await octokit.rest.issues.createComment({
|
||||||
|
owner,
|
||||||
|
repo,
|
||||||
|
issue_number: issue.number,
|
||||||
|
body: 'Closed due to inactivity',
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.error(`Error updating or commenting on issue #${issue.number}: ${error}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error(`Error fetching issues: ${error}`);
|
||||||
|
}
|
||||||
|
25
.github/workflows/compile.yaml
vendored
@ -1,25 +0,0 @@
|
|||||||
name: Compile
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- test*
|
|
||||||
workflow_dispatch: # Manual trigger added
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-runspace:
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ github.head_ref }}
|
|
||||||
- name: Compile project
|
|
||||||
shell: pwsh
|
|
||||||
run: |
|
|
||||||
Set-ExecutionPolicy Bypass -Scope Process -Force; ./Compile.ps1
|
|
||||||
continue-on-error: false # Directly fail the job on error, removing the need for a separate check
|
|
||||||
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
||||||
with:
|
|
||||||
commit_message: Compile Winutil
|
|
||||||
if: success()
|
|
42
.github/workflows/createchangelog.yml
vendored
@ -1,42 +0,0 @@
|
|||||||
name: Update update.mb on Release
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [published, prereleased]
|
|
||||||
workflow_dispatch: # Add this line to enable manual triggering
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update-file:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Get all releases and update update.mb file
|
|
||||||
run: |
|
|
||||||
# Fetch all releases including pre-releases using GitHub CLI
|
|
||||||
gh release list --limit 5 > releases.txt
|
|
||||||
|
|
||||||
# Extract numeric versions and create update.mb content
|
|
||||||
echo "" > docs/update.mb
|
|
||||||
while read -r line; do
|
|
||||||
tag=$(echo "$line" | awk '{print $1}')
|
|
||||||
name=$(echo "$line" | awk -F'\t' '{print $2}')
|
|
||||||
version_numeric=$(echo "$tag" | grep -o -E '[0-9.]+')
|
|
||||||
body=$(gh release view "$tag" --json body --jq .body)
|
|
||||||
echo "## $version_numeric" >> docs/update.mb
|
|
||||||
echo "Release name: $name" >> docs/update.mb
|
|
||||||
echo "Release body: $body" >> docs/update.mb
|
|
||||||
echo "" >> docs/update.mb
|
|
||||||
done < releases.txt
|
|
||||||
|
|
||||||
- name: Commit and Push Changes
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
run: |
|
|
||||||
git config --global user.name 'github-actions[bot]'
|
|
||||||
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
|
||||||
git add docs/update.mb
|
|
||||||
git commit -m "Update update.mb with all releases"
|
|
||||||
git push
|
|
22
.github/workflows/github-pages.yml
vendored
@ -1,22 +0,0 @@
|
|||||||
name: GitHub Pages Deploy
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [published, prereleased]
|
|
||||||
workflow_dispatch:
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: 3.x
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
key: ${{ github.ref }}
|
|
||||||
path: .cache
|
|
||||||
- run: pip install mkdocs-material
|
|
||||||
- run: pip install pillow cairosvg
|
|
||||||
- run: mkdocs gh-deploy --force
|
|
43
.github/workflows/issue-slash-commands.yaml
vendored
@ -1,43 +0,0 @@
|
|||||||
name: Close issue on /close
|
|
||||||
|
|
||||||
on:
|
|
||||||
issue_comment:
|
|
||||||
types: [created, edited]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
closeIssueOnClose:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
issues: write
|
|
||||||
pull-requests: none
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Check for /close comment
|
|
||||||
id: check_comment
|
|
||||||
run: |
|
|
||||||
if [[ "${{ contains(github.event.comment.body, '/close') }}" == "true" ]]; then
|
|
||||||
echo "comment=true" >> $GITHUB_ENV
|
|
||||||
else
|
|
||||||
echo "comment=false" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Check if the user is allowed
|
|
||||||
id: check_user
|
|
||||||
if: env.comment == 'true'
|
|
||||||
run: |
|
|
||||||
ALLOWED_USERS=("ChrisTitusTech" "og-mrk" "Marterich" "MyDrift-user" "Real-MullaC")
|
|
||||||
if [[ " ${ALLOWED_USERS[@]} " =~ " ${{ github.event.comment.user.login }} " ]]; then
|
|
||||||
echo "user=true" >> $GITHUB_ENV
|
|
||||||
else
|
|
||||||
echo "user=false" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Close issue if conditions are met
|
|
||||||
if: env.comment == 'true' && env.user == 'true'
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
|
||||||
run: |
|
|
||||||
echo Closing the issue...
|
|
||||||
gh issue close $ISSUE_NUMBER --repo ${{ github.repository }}
|
|
48
.github/workflows/pre-release.yaml
vendored
@ -1,48 +0,0 @@
|
|||||||
name: Pre-Release WinUtil
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
actions: read
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch: # Manual trigger added
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-runspace:
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Extract Version from winutil.ps1
|
|
||||||
id: extract_version
|
|
||||||
run: |
|
|
||||||
$version = (Get-Date -Format "yy.MM.dd")
|
|
||||||
echo "version=$version" >> $env:GITHUB_ENV
|
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Create Tag
|
|
||||||
id: create_tag
|
|
||||||
run: |
|
|
||||||
$tagExists = git tag -l $env:VERSION
|
|
||||||
if ($tagExists -eq "") {
|
|
||||||
git tag $env:VERSION
|
|
||||||
git push origin $env:VERSION
|
|
||||||
} else {
|
|
||||||
Write-Host "Tag $env:VERSION already exists, skipping tag creation"
|
|
||||||
}
|
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Create and Upload Release
|
|
||||||
id: create_release
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
tag_name: ${{ env.VERSION }}
|
|
||||||
name: Pre-Release ${{ env.VERSION }}
|
|
||||||
body: ""
|
|
||||||
append_body: false
|
|
||||||
files: ./winutil.ps1
|
|
||||||
prerelease: true
|
|
||||||
generate_release_notes: true
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
52
.github/workflows/release.yaml
vendored
@ -1,44 +1,24 @@
|
|||||||
name: Release WinUtil
|
name: Update Branch
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: # Manual trigger added
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- test*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-runspace:
|
build-runspace:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
outputs:
|
|
||||||
version: ${{ steps.extract_version.outputs.version }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- uses: actions/checkout@v4
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Extract Version from winutil.ps1
|
|
||||||
id: extract_version
|
|
||||||
run: |
|
|
||||||
$version = ''
|
|
||||||
Get-Content ./winutil.ps1 -TotalCount 30 | ForEach-Object {
|
|
||||||
if ($_ -match 'Version\s*:\s*(\d{2}\.\d{2}\.\d{2})') {
|
|
||||||
$version = $matches[1]
|
|
||||||
echo "version=$version" >> $GITHUB_OUTPUT
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (-not $version) {
|
|
||||||
Write-Error "Version not found in winutil.ps1"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Create and Upload Release
|
|
||||||
id: create_release
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ steps.extract_version.outputs.version }}
|
ref: ${{ github.head_ref }}
|
||||||
name: Release ${{ steps.extract_version.outputs.version }}
|
- name: Compile project
|
||||||
body: ""
|
shell: pwsh
|
||||||
append_body: true
|
run: |
|
||||||
files: ./winutil.ps1
|
Set-ExecutionPolicy Bypass -Scope Process -Force; ./Compile.ps1
|
||||||
prerelease: false
|
continue-on-error: false # Directly fail the job on error, removing the need for a separate check
|
||||||
make_latest: "true"
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
||||||
env:
|
with:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
commit_message: Compile Winutil
|
||||||
|
if: success()
|
25
.github/workflows/sponsors.yml
vendored
@ -1,25 +0,0 @@
|
|||||||
name: Generate Sponsors README
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: 30 15 * * 0-6
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout 🛎️
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Generate Sponsors 💖
|
|
||||||
uses: JamesIves/github-sponsors-readme-action@v1
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.PAT }}
|
|
||||||
file: 'README.md'
|
|
||||||
|
|
||||||
- name: Deploy to GitHub Pages 🚀
|
|
||||||
uses: JamesIves/github-pages-deploy-action@v4
|
|
||||||
with:
|
|
||||||
branch: main
|
|
||||||
folder: '.'
|
|
4
.github/workflows/unittests.yaml
vendored
@ -8,7 +8,7 @@ jobs:
|
|||||||
name: PS Script Analyzer
|
name: PS Script Analyzer
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v2
|
||||||
- name: lint
|
- name: lint
|
||||||
uses: devblackops/github-action-psscriptanalyzer@master
|
uses: devblackops/github-action-psscriptanalyzer@master
|
||||||
with:
|
with:
|
||||||
@ -22,7 +22,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install Pester
|
- name: Install Pester
|
||||||
run: |
|
run: |
|
||||||
|
1
.gitignore
vendored
@ -44,4 +44,3 @@ Microsoft.PowerShell.ConsoleHost.dll
|
|||||||
microwin.log
|
microwin.log
|
||||||
True
|
True
|
||||||
test.ps1
|
test.ps1
|
||||||
winutil.ps1
|
|
||||||
|
132
Compile.ps1
@ -1,98 +1,59 @@
|
|||||||
param (
|
|
||||||
[switch]$Debug,
|
|
||||||
[switch]$Run
|
|
||||||
)
|
|
||||||
$OFS = "`r`n"
|
$OFS = "`r`n"
|
||||||
$scriptname = "winutil.ps1"
|
$scriptname = "winutil.ps1"
|
||||||
|
|
||||||
# Variable to sync between runspaces
|
# Variable to sync between runspaces
|
||||||
$sync = [Hashtable]::Synchronized(@{})
|
$sync = [Hashtable]::Synchronized(@{})
|
||||||
$sync.PSScriptRoot = $PSScriptRoot
|
$sync.PSScriptRoot = $PSScriptRoot
|
||||||
$sync.configs = @{}
|
$sync.configs = @{}
|
||||||
|
|
||||||
function Update-Progress {
|
if (Test-Path -Path "$($scriptname)")
|
||||||
param (
|
{
|
||||||
[Parameter(Mandatory, position=0)]
|
Remove-Item -Force "$($scriptname)"
|
||||||
[string]$StatusMessage,
|
|
||||||
|
|
||||||
[Parameter(Mandatory, position=1)]
|
|
||||||
[ValidateRange(0,100)]
|
|
||||||
[int]$Percent,
|
|
||||||
|
|
||||||
[Parameter(position=2)]
|
|
||||||
[string]$Activity = "Compiling"
|
|
||||||
)
|
|
||||||
|
|
||||||
Write-Progress -Activity $Activity -Status $StatusMessage -PercentComplete $Percent
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$header = @"
|
Write-output '
|
||||||
################################################################################################################
|
################################################################################################################
|
||||||
### ###
|
### ###
|
||||||
### WARNING: This file is automatically generated DO NOT modify this file directly as it will be overwritten ###
|
### WARNING: This file is automatically generated DO NOT modify this file directly as it will be overwritten ###
|
||||||
### ###
|
### ###
|
||||||
################################################################################################################
|
################################################################################################################
|
||||||
"@
|
' | Out-File ./$scriptname -Append -Encoding ascii
|
||||||
|
|
||||||
|
(Get-Content .\scripts\start.ps1).replace('#{replaceme}',"$(Get-Date -Format yy.MM.dd)") | Out-File ./$scriptname -Append -Encoding ascii
|
||||||
|
|
||||||
# Create the script in memory.
|
|
||||||
Update-Progress "Pre-req: Allocating Memory" 0
|
|
||||||
$script_content = [System.Collections.Generic.List[string]]::new()
|
|
||||||
|
|
||||||
Update-Progress "Adding: Header" 5
|
|
||||||
$script_content.Add($header)
|
|
||||||
|
|
||||||
Update-Progress "Adding: Version" 10
|
|
||||||
$script_content.Add($(Get-Content .\scripts\start.ps1).replace('#{replaceme}',"$(Get-Date -Format yy.MM.dd)"))
|
|
||||||
|
|
||||||
Update-Progress "Adding: Functions" 20
|
|
||||||
Get-ChildItem .\functions -Recurse -File | ForEach-Object {
|
Get-ChildItem .\functions -Recurse -File | ForEach-Object {
|
||||||
$script_content.Add($(Get-Content $psitem.FullName))
|
Get-Content $psitem.FullName | Out-File ./$scriptname -Append -Encoding ascii
|
||||||
}
|
}
|
||||||
Update-Progress "Adding: Config *.json" 40
|
|
||||||
Get-ChildItem .\config | Where-Object {$psitem.extension -eq ".json"} | ForEach-Object {
|
|
||||||
|
|
||||||
|
Get-ChildItem .\config | Where-Object {$psitem.extension -eq ".json"} | ForEach-Object {
|
||||||
$json = (Get-Content $psitem.FullName).replace("'","''")
|
$json = (Get-Content $psitem.FullName).replace("'","''")
|
||||||
|
|
||||||
# Replace every XML Special Character so it'll render correctly in final build
|
# Replace every XML Special Character so it'll render correctly in final build
|
||||||
# Only do so if json files has content to be displayed (for example the applications, tweaks, features json files)
|
# Only do so if json files has content to be displayed (for example the applications, tweaks, features json files)
|
||||||
# Make an Array List containing every name at first level of Json File
|
# Some Type Convertion using Casting and Cleaning Up of the convertion result using 'Replace' Method
|
||||||
$jsonAsObject = $json | convertfrom-json
|
$jsonAsObject = $json | convertfrom-json
|
||||||
$firstLevelJsonList = [System.Collections.ArrayList]::new()
|
$firstLevelJsonList = ([System.String]$jsonAsObject).split('=;') | ForEach-Object {
|
||||||
$jsonAsObject.PSObject.Properties.Name | ForEach-Object {$null = $firstLevelJsonList.Add($_)}
|
$_.Replace('=}','').Replace('@{','').Replace(' ','')
|
||||||
# Note:
|
}
|
||||||
# Avoid using HTML Entity Codes, for example '”' (stands for "Right Double Quotation Mark"),
|
|
||||||
# Use **HTML decimal/hex codes instead**, as using HTML Entity Codes will result in XML parse Error when running the compiled script.
|
|
||||||
for ($i = 0; $i -lt $firstLevelJsonList.Count; $i += 1) {
|
for ($i = 0; $i -lt $firstLevelJsonList.Count; $i += 1) {
|
||||||
$firstLevelName = $firstLevelJsonList[$i]
|
$firstLevelName = $firstLevelJsonList[$i]
|
||||||
|
# Note: Avoid using HTML Entity Codes (for example '”' (stands for "Right Double Quotation Mark")), and use HTML decimal/hex codes instead.
|
||||||
|
# as using HTML Entity Codes will result in XML parse Error when running the compiled script.
|
||||||
if ($jsonAsObject.$firstLevelName.content -ne $null) {
|
if ($jsonAsObject.$firstLevelName.content -ne $null) {
|
||||||
$jsonAsObject.$firstLevelName.content = $jsonAsObject.$firstLevelName.content.replace('&','&').replace('“','“').replace('”','”').replace("'",''').replace('<','<').replace('>','>').replace('—','—')
|
$jsonAsObject.$firstLevelName.content = $jsonAsObject.$firstLevelName.content.replace('&','&').replace('“','“').replace('”','”').replace("'",''').replace('<','<').replace('>','>')
|
||||||
$jsonAsObject.$firstLevelName.content = $jsonAsObject.$firstLevelName.content.replace('''',"'") # resolves the Double Apostrophe caused by the first replace function in the main loop
|
$jsonAsObject.$firstLevelName.content = $jsonAsObject.$firstLevelName.content.replace('''',"'") # resolves the Double Apostrophe caused by the first replace function in the main loop
|
||||||
}
|
}
|
||||||
if ($jsonAsObject.$firstLevelName.description -ne $null) {
|
if ($jsonAsObject.$firstLevelName.description -ne $null) {
|
||||||
$jsonAsObject.$firstLevelName.description = $jsonAsObject.$firstLevelName.description.replace('&','&').replace('“','“').replace('”','”').replace("'",''').replace('<','<').replace('>','>').replace('—','—')
|
$jsonAsObject.$firstLevelName.description = $jsonAsObject.$firstLevelName.description.replace('&','&').replace('“','“').replace('”','”').replace("'",''').replace('<','<').replace('>','>')
|
||||||
$jsonAsObject.$firstLevelName.description = $jsonAsObject.$firstLevelName.description.replace('''',"'") # resolves the Double Apostrophe caused by the first replace function in the main loop
|
$jsonAsObject.$firstLevelName.description = $jsonAsObject.$firstLevelName.description.replace('''',"'") # resolves the Double Apostrophe caused by the first replace function in the main loop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
# The replace at the end is required, as without it the output of converto-json will be somewhat weird for Multiline String
|
||||||
# Add 'WPFInstall' as a prefix to every entry-name in 'applications.json' file
|
# Most Notably is the scripts in json files, make=ing it harder for users who want to review these scripts that are found in the final compiled script
|
||||||
if ($psitem.Name -eq "applications.json") {
|
|
||||||
for ($i = 0; $i -lt $firstLevelJsonList.Count; $i += 1) {
|
|
||||||
$appEntryName = $firstLevelJsonList[$i]
|
|
||||||
$appEntryContent = $jsonAsObject.$appEntryName
|
|
||||||
# Remove the entire app entry, so we could add it later with a different name
|
|
||||||
$jsonAsObject.PSObject.Properties.Remove($appEntryName)
|
|
||||||
# Add the app entry, but with a different name (WPFInstall + The App Entry Name)
|
|
||||||
$jsonAsObject | Add-Member -MemberType NoteProperty -Name "WPFInstall$appEntryName" -Value $appEntryContent
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# The replace at the end is required, as without it the output of 'converto-json' will be somewhat weird for Multiline Strings
|
|
||||||
# Most Notably is the scripts in some json files, making it harder for users who want to review these scripts, which're found in the compiled script
|
|
||||||
$json = ($jsonAsObject | convertto-json -Depth 3).replace('\r\n',"`r`n")
|
$json = ($jsonAsObject | convertto-json -Depth 3).replace('\r\n',"`r`n")
|
||||||
|
|
||||||
$sync.configs.$($psitem.BaseName) = $json | convertfrom-json
|
$sync.configs.$($psitem.BaseName) = $json | convertfrom-json
|
||||||
$script_content.Add($(Write-output "`$sync.configs.$($psitem.BaseName) = '$json' `| convertfrom-json" ))
|
Write-output "`$sync.configs.$($psitem.BaseName) = '$json' `| convertfrom-json" | Out-File ./$scriptname -Append -Encoding ascii
|
||||||
}
|
}
|
||||||
|
|
||||||
$xaml = (Get-Content .\xaml\inputXML.xaml).replace("'","''")
|
$xaml = (Get-Content .\xaml\inputXML.xaml).replace("'","''")
|
||||||
@ -100,44 +61,29 @@ $xaml = (Get-Content .\xaml\inputXML.xaml).replace("'","''")
|
|||||||
# Dot-source the Get-TabXaml function
|
# Dot-source the Get-TabXaml function
|
||||||
. .\functions\private\Get-TabXaml.ps1
|
. .\functions\private\Get-TabXaml.ps1
|
||||||
|
|
||||||
Update-Progress "Building: Xaml " 75
|
## Xaml Manipulation
|
||||||
$appXamlContent = Get-TabXaml "applications" 5
|
$tabColumns = Get-TabXaml "applications" 5
|
||||||
$tweaksXamlContent = Get-TabXaml "tweaks"
|
$tabColumns | Out-File -FilePath ".\xaml\inputApp.xaml" -Encoding ascii
|
||||||
$featuresXamlContent = Get-TabXaml "feature"
|
$tabColumns = Get-TabXaml "tweaks"
|
||||||
|
$tabColumns | Out-File -FilePath ".\xaml\inputTweaks.xaml" -Encoding ascii
|
||||||
|
$tabColumns = Get-TabXaml "feature"
|
||||||
|
$tabColumns | Out-File -FilePath ".\xaml\inputFeatures.xaml" -Encoding ascii
|
||||||
|
|
||||||
|
# Assuming inputApp.xaml is in the same directory as main.ps1
|
||||||
|
$appXamlPath = Join-Path -Path $PSScriptRoot -ChildPath "xaml/inputApp.xaml"
|
||||||
|
$tweaksXamlPath = Join-Path -Path $PSScriptRoot -ChildPath "xaml/inputTweaks.xaml"
|
||||||
|
$featuresXamlPath = Join-Path -Path $PSScriptRoot -ChildPath "xaml/inputFeatures.xaml"
|
||||||
|
|
||||||
|
# Load the XAML content from inputApp.xaml
|
||||||
|
$appXamlContent = Get-Content -Path $appXamlPath -Raw
|
||||||
|
$tweaksXamlContent = Get-Content -Path $tweaksXamlPath -Raw
|
||||||
|
$featuresXamlContent = Get-Content -Path $featuresXamlPath -Raw
|
||||||
|
|
||||||
Update-Progress "Adding: Xaml " 90
|
|
||||||
# Replace the placeholder in $inputXML with the content of inputApp.xaml
|
# Replace the placeholder in $inputXML with the content of inputApp.xaml
|
||||||
$xaml = $xaml -replace "{{InstallPanel_applications}}", $appXamlContent
|
$xaml = $xaml -replace "{{InstallPanel_applications}}", $appXamlContent
|
||||||
$xaml = $xaml -replace "{{InstallPanel_tweaks}}", $tweaksXamlContent
|
$xaml = $xaml -replace "{{InstallPanel_tweaks}}", $tweaksXamlContent
|
||||||
$xaml = $xaml -replace "{{InstallPanel_features}}", $featuresXamlContent
|
$xaml = $xaml -replace "{{InstallPanel_features}}", $featuresXamlContent
|
||||||
|
|
||||||
$script_content.Add($(Write-output "`$inputXML = '$xaml'"))
|
Write-output "`$inputXML = '$xaml'" | Out-File ./$scriptname -Append -Encoding ascii
|
||||||
|
|
||||||
$script_content.Add($(Get-Content .\scripts\main.ps1))
|
Get-Content .\scripts\main.ps1 | Out-File ./$scriptname -Append -Encoding ascii
|
||||||
|
|
||||||
if ($Debug){
|
|
||||||
Update-Progress "Writing debug files" 95
|
|
||||||
$appXamlContent | Out-File -FilePath ".\xaml\inputApp.xaml" -Encoding ascii
|
|
||||||
$tweaksXamlContent | Out-File -FilePath ".\xaml\inputTweaks.xaml" -Encoding ascii
|
|
||||||
$featuresXamlContent | Out-File -FilePath ".\xaml\inputFeatures.xaml" -Encoding ascii
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Update-Progress "Removing temporary files" 99
|
|
||||||
Remove-Item ".\xaml\inputApp.xaml" -ErrorAction SilentlyContinue
|
|
||||||
Remove-Item ".\xaml\inputTweaks.xaml" -ErrorAction SilentlyContinue
|
|
||||||
Remove-Item ".\xaml\inputFeatures.xaml" -ErrorAction SilentlyContinue
|
|
||||||
}
|
|
||||||
|
|
||||||
Set-Content -Path $scriptname -Value ($script_content -join "`r`n") -Encoding ascii
|
|
||||||
Write-Progress -Activity "Compiling" -Completed
|
|
||||||
|
|
||||||
if ($run){
|
|
||||||
try {
|
|
||||||
Start-Process -FilePath "pwsh" -ArgumentList ".\$scriptname"
|
|
||||||
}
|
|
||||||
catch {
|
|
||||||
Start-Process -FilePath "powershell" -ArgumentList ".\$scriptname"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
33
KnownIssues.md
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
## Known Issues and Fixes
|
||||||
|
- Windows taking longer to shut down:
|
||||||
|
- [#69](https://github.com/ChrisTitusTech/winutil/issues/69) Turn on fast startup: Press Windows key + R, then type:
|
||||||
|
```
|
||||||
|
control /name Microsoft.PowerOptions /page pageGlobalSettings
|
||||||
|
```
|
||||||
|
- If that doesn't work, Disable Hibernation: Press Windows Key+X and select 'PowerShell (Admin)' (Windows 10) or 'Windows Terminal (Admin)' (Windows 11) and enter:
|
||||||
|
```
|
||||||
|
powercfg /H off
|
||||||
|
```
|
||||||
|
- [#69](https://github.com/ChrisTitusTech/winutil/issues/69) [95](https://github.com/ChrisTitusTech/winutil/issues/95) [#232](https://github.com/ChrisTitusTech/winutil/issues/232) Windows Search does not work: Enable Background Apps
|
||||||
|
- [#198](https://github.com/ChrisTitusTech/winutil/issues/198) Xbox Game Bar Activation Broken: Set the Xbox Accessory Management Service to Automatic
|
||||||
|
```
|
||||||
|
Get-Service -Name "XboxGipSvc" | Set-Service -StartupType Automatic
|
||||||
|
```
|
||||||
|
- Windows Insider Builds not installing: Telemetry needs to be enabled
|
||||||
|
```
|
||||||
|
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 0
|
||||||
|
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 0
|
||||||
|
```
|
||||||
|
- Winget requires interaction on first run: Manually type 'y' and 'enter' into the PowerShell console to continue
|
||||||
|
- (Windows 11) Quick Settings no longer works: Launch the Script and click 'Enable Action Center'
|
||||||
|
- Explorer no longer launches: Go to Control Panel, File Explorer Options, Change the 'Open File Explorer to' option to 'This PC'.
|
||||||
|
- Script doesn't run/PowerShell crashes:
|
||||||
|
1. Press Windows Key+X and select 'PowerShell (Admin)' (Windows 10) or 'Windows Terminal (Admin)' (Windows 11)
|
||||||
|
2. Run:
|
||||||
|
```
|
||||||
|
Set-ExecutionPolicy Unrestricted -Scope Process -Force
|
||||||
|
```
|
||||||
|
3. Run:
|
||||||
|
```
|
||||||
|
irm christitus.com/win | iex
|
||||||
|
```
|
128
README.md
@ -1,20 +1,16 @@
|
|||||||
# Chris Titus Tech's Windows Utility
|
# Chris Titus Tech's Windows Utility
|
||||||
|
|
||||||
[](https://github.com/ChrisTitusTech/winutil/releases/latest)
|
|
||||||

|
|
||||||
[](https://discord.gg/RUbZUZyByQ)
|
|
||||||
|
|
||||||
This utility is a compilation of Windows tasks I perform on each Windows system I use. It is meant to streamline *installs*, debloat with *tweaks*, troubleshoot with *config*, and fix Windows *updates*. I am extremely picky about any contributions to keep this project clean and efficient.
|
This utility is a compilation of Windows tasks I perform on each Windows system I use. It is meant to streamline *installs*, debloat with *tweaks*, troubleshoot with *config*, and fix Windows *updates*. I am extremely picky about any contributions to keep this project clean and efficient.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## 💡 Usage
|
## Usage
|
||||||
|
|
||||||
Winutil must be run in Admin mode because it performs system-wide tweaks. To achieve this, open PowerShell or Windows Terminal as an administrator. Here are a few ways to do it:
|
Winutil must be run in Admin mode because it performs system-wide tweaks. To achieve this, open PowerShell or Windows Terminal as an administrator. Here are a few ways to do it:
|
||||||
|
|
||||||
1. **Right-Click Method:**
|
1. **Right-Click Method:**
|
||||||
- Right-click on the start menu.
|
- Right-click on the start menu.
|
||||||
- Choose "Windows PowerShell (Admin)" (for Windows 10) or "Terminal (Admin)" (for Windows 11).
|
- Choose "PowerShell As Admin" (for Windows 10) or "Windows Terminal As Admin" (for Windows 11).
|
||||||
|
|
||||||
2. **Search and Launch Method:**
|
2. **Search and Launch Method:**
|
||||||
- Press the Windows key.
|
- Press the Windows key.
|
||||||
@ -24,43 +20,127 @@ Winutil must be run in Admin mode because it performs system-wide tweaks. To ach
|
|||||||
|
|
||||||
### Launch Command
|
### Launch Command
|
||||||
|
|
||||||
#### Stable Branch
|
#### Simple way
|
||||||
|
|
||||||
```ps1
|
|
||||||
irm "https://christitus.com/win" | iex
|
|
||||||
```
|
```
|
||||||
#### Dev Branch
|
irm https://christitus.com/win | iex
|
||||||
|
```
|
||||||
|
Courtesy of the issue raised at: [#144](/../../issues/144)
|
||||||
|
|
||||||
```ps1
|
or by executing:
|
||||||
irm "https://christitus.com/windev" | iex
|
```
|
||||||
|
iwr -useb https://christitus.com/win | iex
|
||||||
```
|
```
|
||||||
|
|
||||||
If you have Issues, refer to [Known Issues](https://christitustech.github.io/winutil/KnownIssues/)
|
if for some reason this site is not reachable from your country please try running it directly from github
|
||||||
|
|
||||||
## 🎓 Documentation
|
```
|
||||||
|
irm https://raw.githubusercontent.com/ChrisTitusTech/winutil/main/winutil.ps1 | iex
|
||||||
|
```
|
||||||
|
|
||||||
### [WinUtil Official Documentation](https://christitustech.github.io/winutil/)
|
#### Automation
|
||||||
|
|
||||||
### [YouTube Tutorial](https://www.youtube.com/watch?v=6UQZ5oQg8XA)
|
Some features are avaliable through automation. This allows you to save your config file pass it to Winutil walk away and come back to a finished system. Here is how you can set it up currently with Winutil >24.01.15
|
||||||
|
|
||||||
### [ChrisTitus.com Article](https://christitus.com/windows-tool/)
|
1. On the Install Tab, click "Get Installed", this will get all installed apps **supported by Winutil** on the system
|
||||||
|

|
||||||
|
2. Click on the Settings cog in the upper right corner and chose Export, chose file file and location, this will export the setting file.
|
||||||
|

|
||||||
|
3. Copy this file to a USB or somewhere you can use after Windows installation.
|
||||||
|
4. Use Microwin tab to create a custom Windows image.
|
||||||
|
5. Install the Windows image.
|
||||||
|
6. In the new Windows, Open PowerShell in the admin mode and run command to automatically apply tweaks and install apps from the config file.
|
||||||
|
```
|
||||||
|
iex "& { $(irm christitus.com/win) } -Config [path-to-your-config] -Run"
|
||||||
|
```
|
||||||
|
7. Have a cup of coffee! Come back when it's done.
|
||||||
|
|
||||||
|
|
||||||
## 💖 Support
|
## Issues:
|
||||||
|
|
||||||
|
- If you are unable to resolve christitus.com/win and are getting errors launching the tool, it might be due to India blocking GitHub's content domain and preventing downloads. You may use a VPN or change your DNS provider to Google/Cloudflare/etc.
|
||||||
|
|
||||||
|
Source: <https://timesofindia.indiatimes.com/gadgets-news/github-content-domain-blocked-for-these-indian-users-reports/articleshow/96687992.cms>
|
||||||
|
|
||||||
|
- Windows Security (formerly Defender) and other anti-virus software are known to block the script. The script gets flagged due to the fact that it requires administrator privileges & makes drastic system changes.
|
||||||
|
|
||||||
|
- If you are having TLS 1.2 issues, or are having trouble resolving `christitus.com/win` then run with the following command:
|
||||||
|
|
||||||
|
```
|
||||||
|
[Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12;iex(New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/ChrisTitusTech/winutil/main/winutil.ps1')
|
||||||
|
```
|
||||||
|
|
||||||
|
If you are still having issues try changing your DNS provider to 1.1.1.1 || 1.0.0.1 or 8.8.8.8 || 8.8.4.4
|
||||||
|
|
||||||
|
## Support
|
||||||
- To morally and mentally support the project, make sure to leave a ⭐️!
|
- To morally and mentally support the project, make sure to leave a ⭐️!
|
||||||
- EXE Wrapper for $10 @ https://www.cttstore.com/windows-toolbox
|
- EXE Wrapper for $10 @ https://www.cttstore.com/windows-toolbox
|
||||||
|
|
||||||
## 💖 Sponsors
|
## Tutorial
|
||||||
|
|
||||||
These are the sponsors that help keep this project alive with monthly contributions.
|
[](https://www.youtube.com/watch?v=6UQZ5oQg8XA)
|
||||||
|
|
||||||
<!-- sponsors --><a href="https://github.com/GregoryNavasarkian"><img src="https://github.com/GregoryNavasarkian.png" width="60px" alt="Gregory Navasarkian" /></a><a href="https://github.com/ysaito8015"><img src="https://github.com/ysaito8015.png" width="60px" alt="Yusuke Saito" /></a><a href="https://github.com/TriHydera"><img src="https://github.com/TriHydera.png" width="60px" alt="TriHydera" /></a><a href="https://github.com/jozozovko"><img src="https://github.com/jozozovko.png" width="60px" alt="" /></a><a href="https://github.com/DelDongo"><img src="https://github.com/DelDongo.png" width="60px" alt="" /></a><a href="https://github.com/markamos"><img src="https://github.com/markamos.png" width="60px" alt="Mark Amos" /></a><a href="https://github.com/dwelfusius"><img src="https://github.com/dwelfusius.png" width="60px" alt="" /></a><a href="https://github.com/mews-se"><img src="https://github.com/mews-se.png" width="60px" alt="" /></a><a href="https://github.com/jdiegmueller"><img src="https://github.com/jdiegmueller.png" width="60px" alt="Jason A. Diegmueller" /></a><a href="https://github.com/AlanTristar"><img src="https://github.com/AlanTristar.png" width="60px" alt="" /></a><a href="https://github.com/JennJones89"><img src="https://github.com/JennJones89.png" width="60px" alt="" /></a><a href="https://github.com/zepled112"><img src="https://github.com/zepled112.png" width="60px" alt="wyatt" /></a><a href="https://github.com/TDWillingham"><img src="https://github.com/TDWillingham.png" width="60px" alt="MetalliDan28" /></a><a href="https://github.com/frankolivares"><img src="https://github.com/frankolivares.png" width="60px" alt="" /></a><a href="https://github.com/Cube707"><img src="https://github.com/Cube707.png" width="60px" alt="Jan Wille" /></a><a href="https://github.com/Owen-3456"><img src="https://github.com/Owen-3456.png" width="60px" alt="Owen" /></a><a href="https://github.com/altugtekiner"><img src="https://github.com/altugtekiner.png" width="60px" alt="" /></a><a href="https://github.com/getsmor"><img src="https://github.com/getsmor.png" width="60px" alt="" /></a><a href="https://github.com/robertsandrock"><img src="https://github.com/robertsandrock.png" width="60px" alt="" /></a><a href="https://github.com/jeffnesbit"><img src="https://github.com/jeffnesbit.png" width="60px" alt="" /></a><a href="https://github.com/mmomega"><img src="https://github.com/mmomega.png" width="60px" alt="" /></a><a href="https://github.com/KenichiQaz"><img src="https://github.com/KenichiQaz.png" width="60px" alt="Stefan" /></a><a href="https://github.com/thaddl"><img src="https://github.com/thaddl.png" width="60px" alt="thaddl" /></a><a href="https://github.com/paulsheets"><img src="https://github.com/paulsheets.png" width="60px" alt="" /></a><a href="https://github.com/djones369"><img src="https://github.com/djones369.png" width="60px" alt="Dave Jones" /></a><!-- sponsors -->
|
## Overview
|
||||||
|
|
||||||
## 🏅 Thanks to all Contributors
|
- Install
|
||||||
|
- Install Selection: Organize programs by category and facilitate installation by enabling users to select programs and initiate the installation process with a single click.
|
||||||
|
|
||||||
|
- Upgrade All: Upgrade all existing programs to their latest versions, ensuring users have the most up-to-date and feature-rich software.
|
||||||
|
|
||||||
|
- Uninstall Selection: Effortlessly uninstall selected programs, providing users with a streamlined way to remove unwanted software from their system.
|
||||||
|
|
||||||
|
- Get Installed: Retrieve a comprehensive list of installed programs on the system, offering users visibility into the software currently installed on their computer.
|
||||||
|
|
||||||
|
- Import / Export: Enable users to import or export the selection list of programs, allowing them to save their preferred program configurations or share them with others. This feature promotes convenience and flexibility in managing program selections across different systems.
|
||||||
|
|
||||||
|
- Tweaks
|
||||||
|
- Recommended Selection: Provides pre-defined templates tailored for desktop, laptop, and minimal configurations, allowing users to select recommended settings and optimizations specific to their system type.
|
||||||
|
|
||||||
|
- Essential Tweaks: Offers a collection of essential tweaks aimed at improving system performance, privacy, and resource utilization. These tweaks include creating a system restore point, disabling telemetry, Wi-Fi Sense, setting services to manual, disabling location tracking, and HomeGroup, among others.
|
||||||
|
|
||||||
|
- Advanced Tweaks: Encompasses a range of various advanced power user tweaks to further optimize the system. These tweaks include removing OneDrive and Edge, disabling User Account Control (UAC), notification panel, among others.
|
||||||
|
|
||||||
|
- Toggles: Adds easy to use, one click shortcuts for toggling dark mode, NumLock on startup, file extensions, sticky keys, among others.
|
||||||
|
|
||||||
|
- Additional Tweaks: Introduces various other tweaks such as enabling dark mode, changing DNS settings, adding an Ultimate Performance mode, and creating shortcuts for WinUtil tools. These tweaks provide users with additional customization options to tailor their system to their preferences.
|
||||||
|
|
||||||
|
- Config
|
||||||
|
- Features: Allows users to easily install various essential components and features to enhance their Windows experience. These features include installing .NET Frameworks, enabling Hyper-V virtualization, enabling legacy media support for Windows Media Player and DirectPlay, enabling NFS (Network File System) for network file sharing, and enabling Windows Subsystem for Linux (WSL) for running Linux applications on Windows.
|
||||||
|
|
||||||
|
- Fixes: Provides a range of helpful fixes to address common issues and improve system stability. This includes setting up autologon for seamless login experiences, resetting Windows updates to resolve update-related problems, performing a system corruption scan to detect and repair corrupted files, and resetting network settings to troubleshoot network connectivity issues.
|
||||||
|
|
||||||
|
- Legacy Windows Panels: Includes access to legacy Windows panels from Windows 7, allowing users to access familiar and powerful tools. These panels include Control Panel for managing system settings, Network Connections for configuring network adapters and connections, Power Panel for adjusting power and sleep settings, Sound Settings for managing audio devices and settings, System Properties for viewing and modifying system information, and User Accounts for managing user profiles and account settings.
|
||||||
|
|
||||||
|
|
||||||
|
- Updates:
|
||||||
|
- Default (Out of Box) Settings: Provides the default settings that come with Windows for updates.
|
||||||
|
|
||||||
|
- Security (Recommended) Settings: Offers recommended settings, including a slight delay of feature updates by 2 years and installation of security updates 4 days after release.
|
||||||
|
|
||||||
|
- Disable All Updates (Not Recommended!): Allows users to disable all Windows updates, but it's not recommended due to potential security risks.
|
||||||
|
|
||||||
|
|
||||||
|
Video and Written Article walkthrough @ <https://christitus.com/windows-tool/>
|
||||||
|
|
||||||
|
## Issues
|
||||||
|
|
||||||
|
If you encounter any challenges or problems with the script, I kindly request that you submit them via the "Issues" tab on the GitHub repository. By filling out the provided template, you can provide specific details about the issue, allowing me to promptly address any bugs or consider feature requests.
|
||||||
|
|
||||||
|
## Contribute Code
|
||||||
|
|
||||||
|
To contribute new code, please ensure that it is submitted to the **TEST BRANCH**. Please note that merges will not be performed directly on the MAIN branch.
|
||||||
|
|
||||||
|
When creating pull requests, it is essential to thoroughly document all changes made. This includes documenting any additions made to the tweaks section and ensuring that corresponding undo measures are in place to remove the newly added tweaks if necessary. Failure to adhere to this format may result in denial of the pull request. Additionally, comprehensive documentation is required for all code changes. Any code lacking sufficient documentation may also be denied.
|
||||||
|
|
||||||
|
By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented.
|
||||||
|
|
||||||
|
NOTE: When creating a function please include "WPF" or "WinUtil" in the name so that it can be loaded into the runspace.
|
||||||
|
|
||||||
|
## Thanks to all Contributors
|
||||||
Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻.
|
Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻.
|
||||||
|
|
||||||
[](https://github.com/ChrisTitusTech/winutil/graphs/contributors)
|
[](https://github.com/ChrisTitusTech/winutil/graphs/contributors)
|
||||||
|
|
||||||
## 📊 GitHub Stats
|
## GitHub Stats
|
||||||
|
|
||||||

|

|
||||||
|
@ -1,50 +1,30 @@
|
|||||||
{
|
{
|
||||||
"Google":{
|
"Google":{
|
||||||
"Primary": "8.8.8.8",
|
"Primary": "8.8.8.8",
|
||||||
"Secondary": "8.8.4.4",
|
"Secondary": "8.8.4.4"
|
||||||
"Primary6": "2001:4860:4860::8888",
|
|
||||||
"Secondary6": "2001:4860:4860::8844"
|
|
||||||
},
|
},
|
||||||
"Cloudflare":{
|
"Cloudflare":{
|
||||||
"Primary": "1.1.1.1",
|
"Primary": "1.1.1.1",
|
||||||
"Secondary": "1.0.0.1",
|
"Secondary": "1.0.0.1"
|
||||||
"Primary6": "2606:4700:4700::1111",
|
|
||||||
"Secondary6": "2606:4700:4700::1001"
|
|
||||||
},
|
},
|
||||||
"Cloudflare_Malware":{
|
"Cloudflare_Malware":{
|
||||||
"Primary": "1.1.1.2",
|
"Primary": "1.1.1.2",
|
||||||
"Secondary": "1.0.0.2",
|
"Secondary": "1.0.0.2"
|
||||||
"Primary6": "2606:4700:4700::1112",
|
|
||||||
"Secondary6": "2606:4700:4700::1002"
|
|
||||||
},
|
},
|
||||||
"Cloudflare_Malware_Adult":{
|
"Cloudflare_Malware_Adult":{
|
||||||
"Primary": "1.1.1.3",
|
"Primary": "1.1.1.3",
|
||||||
"Secondary": "1.0.0.3",
|
"Secondary": "1.0.0.3"
|
||||||
"Primary6": "2606:4700:4700::1113",
|
},
|
||||||
"Secondary6": "2606:4700:4700::1003"
|
"Level3":{
|
||||||
|
"Primary": "4.2.2.2",
|
||||||
|
"Secondary": "4.2.2.1"
|
||||||
},
|
},
|
||||||
"Open_DNS":{
|
"Open_DNS":{
|
||||||
"Primary": "208.67.222.222",
|
"Primary": "208.67.222.222",
|
||||||
"Secondary": "208.67.220.220",
|
"Secondary": "208.67.220.220"
|
||||||
"Primary6": "2620:119:35::35",
|
|
||||||
"Secondary6": "2620:119:53::53"
|
|
||||||
},
|
},
|
||||||
"Quad9":{
|
"Quad9":{
|
||||||
"Primary": "9.9.9.9",
|
"Primary": "9.9.9.9",
|
||||||
"Secondary": "149.112.112.112",
|
"Secondary": "149.112.112.112"
|
||||||
"Primary6": "2620:fe::fe",
|
|
||||||
"Secondary6": "2620:fe::9"
|
|
||||||
},
|
|
||||||
"AdGuard_Ads_Trackers":{
|
|
||||||
"Primary": "94.140.14.14",
|
|
||||||
"Secondary": "94.140.15.15",
|
|
||||||
"Primary6": "2a10:50c0::ad1:ff",
|
|
||||||
"Secondary6": "2a10:50c0::ad2:ff"
|
|
||||||
},
|
|
||||||
"AdGuard_Ads_Trackers_Malware_Adult":{
|
|
||||||
"Primary": "94.140.14.15",
|
|
||||||
"Secondary": "94.140.15.16",
|
|
||||||
"Primary6": "2a10:50c0::bad1:ff",
|
|
||||||
"Secondary6": "2a10:50c0::bad2:ff"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -184,104 +184,90 @@
|
|||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Order": "a060_",
|
"Order": "a060_",
|
||||||
"Type": "Button",
|
"Type": "150"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFPanelAutologin": {
|
"WPFPanelAutologin": {
|
||||||
"Content": "Set Up Autologin",
|
"Content": "Set Up Autologin",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"Order": "a040_",
|
"Order": "a040_",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "300"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFFixesUpdate": {
|
"WPFFixesUpdate": {
|
||||||
"Content": "Reset Windows Update",
|
"Content": "Reset Windows Update",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Order": "a041_",
|
"Order": "a041_",
|
||||||
"Type": "Button",
|
"Type": "300"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFFixesNetwork": {
|
"WPFFixesNetwork": {
|
||||||
"Content": "Reset Network",
|
"Content": "Reset Network",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"Order": "a042_",
|
"Order": "a042_",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "300"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFPanelDISM": {
|
"WPFPanelDISM": {
|
||||||
"Content": "System Corruption Scan",
|
"Content": "System Corruption Scan",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Order": "a043_",
|
"Order": "a043_",
|
||||||
"Type": "Button",
|
"Type": "300"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFFixesWinget": {
|
"WPFFixesWinget": {
|
||||||
"Content": "WinGet Reinstall",
|
"Content": "WinGet Reinstall",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Order": "a044_",
|
"Order": "a044_",
|
||||||
"Type": "Button",
|
"Type": "300"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFRunAdobeCCCleanerTool": {
|
"WPFRunAdobeCCCleanerTool": {
|
||||||
"Content": "Remove Adobe Creative Cloud",
|
"Content": "Remove Adobe Creative Cloud",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Order": "a045_",
|
"Order": "a045_",
|
||||||
"Type": "Button",
|
"Type": "300"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFPanelnetwork": {
|
"WPFPanelnetwork": {
|
||||||
"Content": "Network Connections",
|
"Content": "Network Connections",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "200"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFPanelcontrol": {
|
"WPFPanelcontrol": {
|
||||||
"Content": "Control Panel",
|
"Content": "Control Panel",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "200"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFPanelpower": {
|
"WPFPanelpower": {
|
||||||
"Content": "Power Panel",
|
"Content": "Power Panel",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "200"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFPanelregion": {
|
"WPFPanelregion": {
|
||||||
"Content": "Region",
|
"Content": "Region",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "200"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFPanelsound": {
|
"WPFPanelsound": {
|
||||||
"Content": "Sound Settings",
|
"Content": "Sound Settings",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "200"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFPanelsystem": {
|
"WPFPanelsystem": {
|
||||||
"Content": "System Properties",
|
"Content": "System Properties",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "200"
|
||||||
"ButtonWidth": "300"
|
|
||||||
},
|
},
|
||||||
"WPFPaneluser": {
|
"WPFPaneluser": {
|
||||||
"Content": "User Accounts",
|
"Content": "User Accounts",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "200"
|
||||||
"ButtonWidth": "300"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
399
config/helperscript.ps1
Normal file
@ -0,0 +1,399 @@
|
|||||||
|
# This file is meant to assist in building out the json files inside this folder.
|
||||||
|
|
||||||
|
#===========================================================================
|
||||||
|
# applications.json
|
||||||
|
#===========================================================================
|
||||||
|
|
||||||
|
<#
|
||||||
|
Applications.json
|
||||||
|
-----------------
|
||||||
|
This file holds all the install commands to install the applications.
|
||||||
|
This file has the ability to expect multiple frameworks per checkbox.
|
||||||
|
You can also add multiple install commands by separating them with ;
|
||||||
|
|
||||||
|
The structure of the json is as follows
|
||||||
|
|
||||||
|
{
|
||||||
|
"Name of Button": {
|
||||||
|
"winget": "Winget command"
|
||||||
|
"choco": "Chocolatey command"
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
{
|
||||||
|
"WPFInstalladobe": {
|
||||||
|
"winget": "Adobe.Acrobat.Reader.64-bit"
|
||||||
|
"choco": "adobereader"
|
||||||
|
},
|
||||||
|
"WPFInstalladvancedip": {
|
||||||
|
"winget": "Famatech.AdvancedIPScanner"
|
||||||
|
"choco": "advanced-ip-scanner"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#>
|
||||||
|
|
||||||
|
# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
|
||||||
|
#------Do not delete WPF------
|
||||||
|
|
||||||
|
$NameofButton = "WPF" + ""
|
||||||
|
$WingetCommand = ""
|
||||||
|
$ChocoCommand = ""
|
||||||
|
|
||||||
|
$ButtonToAdd = New-Object psobject
|
||||||
|
$jsonfile = Get-Content ./config/applications.json | ConvertFrom-Json
|
||||||
|
|
||||||
|
# Remove if already exists
|
||||||
|
if($jsonfile.$NameofButton){
|
||||||
|
$jsonfile.psobject.Properties.remove($NameofButton)
|
||||||
|
}
|
||||||
|
|
||||||
|
Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "Winget" -Value $WingetCommand
|
||||||
|
Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "choco" -Value $ChocoCommand
|
||||||
|
Add-Member -InputObject $jsonfile.install -MemberType NoteProperty -Name $NameofButton -Value $ButtonToAdd
|
||||||
|
|
||||||
|
$jsonfile | ConvertTo-Json | Out-File ./config/applications.json
|
||||||
|
|
||||||
|
#===========================================================================
|
||||||
|
# feature.json
|
||||||
|
#===========================================================================
|
||||||
|
|
||||||
|
<#
|
||||||
|
feature.json
|
||||||
|
-----------------
|
||||||
|
This file holds all the windows commands to install specific features (IE Hyper-v)
|
||||||
|
|
||||||
|
The structure of the json is as follows
|
||||||
|
|
||||||
|
{
|
||||||
|
"Name of Button": [
|
||||||
|
"Array of",
|
||||||
|
"commands"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Example:
|
||||||
|
{
|
||||||
|
"Featurewsl": [
|
||||||
|
"VirtualMachinePlatform",
|
||||||
|
"Microsoft-Windows-Subsystem-Linux"
|
||||||
|
],
|
||||||
|
"Featurenfs": [
|
||||||
|
"ServicesForNFS-ClientOnly",
|
||||||
|
"ClientForNFS-Infrastructure",
|
||||||
|
"NFS-Administration"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
#>
|
||||||
|
|
||||||
|
# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
|
||||||
|
|
||||||
|
$NameofButton = ""
|
||||||
|
$commands = @(
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
|
$jsonfile = Get-Content ./config/feature.json | ConvertFrom-Json
|
||||||
|
|
||||||
|
# Remove if already exists
|
||||||
|
if($jsonfile.$NameofButton){
|
||||||
|
$jsonfile.psobject.Properties.remove($NameofButton)
|
||||||
|
}
|
||||||
|
|
||||||
|
Add-Member -InputObject $jsonfile -MemberType NoteProperty -Name $NameofButton -Value $commands
|
||||||
|
|
||||||
|
$jsonfile | ConvertTo-Json | Out-File ./config/feature.json
|
||||||
|
|
||||||
|
#===========================================================================
|
||||||
|
# preset.json
|
||||||
|
#===========================================================================
|
||||||
|
|
||||||
|
<#
|
||||||
|
preset.json
|
||||||
|
-----------------
|
||||||
|
This file holds all check boxes you wish to check when clicking a preset button in the tweaks section.
|
||||||
|
|
||||||
|
The structure of the json is as follows
|
||||||
|
|
||||||
|
{
|
||||||
|
"Name of Button": [
|
||||||
|
"Array of",
|
||||||
|
"checkboxes to check"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Example:
|
||||||
|
{
|
||||||
|
"laptop": [
|
||||||
|
"EssTweaksAH",
|
||||||
|
"EssTweaksDVR",
|
||||||
|
"EssTweaksHome",
|
||||||
|
"EssTweaksLoc",
|
||||||
|
"EssTweaksOO",
|
||||||
|
"EssTweaksRP",
|
||||||
|
"EssTweaksServices",
|
||||||
|
"EssTweaksStorage",
|
||||||
|
"EssTweaksTele",
|
||||||
|
"EssTweaksWifi",
|
||||||
|
"MiscTweaksLapPower",
|
||||||
|
"MiscTweaksLapNum"
|
||||||
|
],
|
||||||
|
"minimal": [
|
||||||
|
"EssTweaksHome",
|
||||||
|
"EssTweaksOO",
|
||||||
|
"EssTweaksRP",
|
||||||
|
"EssTweaksServices",
|
||||||
|
"EssTweaksTele"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
#>
|
||||||
|
|
||||||
|
# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
|
||||||
|
|
||||||
|
$NameofButton = "WPF" + ""
|
||||||
|
$commands = @(
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
|
$jsonfile = Get-Content ./config/preset.json | ConvertFrom-Json
|
||||||
|
|
||||||
|
# Remove if already exists
|
||||||
|
if($jsonfile.$NameofButton){
|
||||||
|
$jsonfile.psobject.Properties.remove($NameofButton)
|
||||||
|
}
|
||||||
|
|
||||||
|
Add-Member -InputObject $jsonfile -MemberType NoteProperty -Name $NameofButton -Value $commands
|
||||||
|
|
||||||
|
$jsonfile | ConvertTo-Json | Out-File ./config/preset.json
|
||||||
|
|
||||||
|
#===========================================================================
|
||||||
|
# tweaks.json
|
||||||
|
#===========================================================================
|
||||||
|
|
||||||
|
<#
|
||||||
|
tweaks.json
|
||||||
|
-----------------
|
||||||
|
This file holds all the tweaks needed to make modifications to windows. This file is the most complicated so modify with care.
|
||||||
|
|
||||||
|
The structure of the json is as follows
|
||||||
|
|
||||||
|
{
|
||||||
|
"Name of button": {
|
||||||
|
"registry" : [
|
||||||
|
{
|
||||||
|
"Path": "Path in registry",
|
||||||
|
"Name": "Name of Registry key",
|
||||||
|
"Type": "Item type",
|
||||||
|
"Value": "Value to modify",
|
||||||
|
"OriginalValue": "value to reset"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"service" : [
|
||||||
|
{
|
||||||
|
"Name": "Name of service",
|
||||||
|
"StartupType": "Startup type to set",
|
||||||
|
"OriginalType": "Startup type to reset"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ScheduledTask" : [
|
||||||
|
{
|
||||||
|
"Name": "Path to scheduled task",
|
||||||
|
"State": "State to set",
|
||||||
|
"OriginalState": "State to reset"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"appx": [
|
||||||
|
List of appx,
|
||||||
|
files to uninstall
|
||||||
|
],
|
||||||
|
"InvokeScript": [
|
||||||
|
"Script to make modifications not possible with the above types
|
||||||
|
Special care needs to be taken here as converting from json to a scriptblock
|
||||||
|
can cause weird issues. Please look at the example below to get an idea of how things should work"
|
||||||
|
],
|
||||||
|
"UndoScript": [
|
||||||
|
"Same as above however is meant to undo what you did above"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
{
|
||||||
|
EssTweaksAH": {
|
||||||
|
"registry" : [
|
||||||
|
{
|
||||||
|
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
|
||||||
|
"Name": "EnableActivityFeed",
|
||||||
|
"Type": "DWord",
|
||||||
|
"Value": "0",
|
||||||
|
"OriginalValue": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
|
||||||
|
"Name": "PublishUserActivities",
|
||||||
|
"Type": "DWord",
|
||||||
|
"Value": "0",
|
||||||
|
"OriginalValue": "1"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"EssTweaksHome": {
|
||||||
|
"service" : [
|
||||||
|
{
|
||||||
|
"Name": "HomeGroupListener",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "HomeGroupProvider",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"EssTweaksTele": {
|
||||||
|
"ScheduledTask" : [
|
||||||
|
{
|
||||||
|
"Name": "Microsoft\\Windows\\Application Experience\\Microsoft Compatibility Appraiser",
|
||||||
|
"State": "Disabled",
|
||||||
|
"OriginalState": "Enabled"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "Microsoft\\Windows\\Application Experience\\ProgramDataUpdater",
|
||||||
|
"State": "Disabled",
|
||||||
|
"OriginalState": "Enabled"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"EssTweaksDeBloat": {
|
||||||
|
"appx": [
|
||||||
|
"Microsoft.Microsoft3DViewer",
|
||||||
|
"Microsoft.AppConnector"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"EssTweaksOO": {
|
||||||
|
"InvokeScript": [
|
||||||
|
"Import-Module BitsTransfer
|
||||||
|
Start-BitsTransfer -Source \"https://raw.githubusercontent.com/ChrisTitusTech/win10script/master/ooshutup10.cfg\" -Destination C:\\Windows\\Temp\\ooshutup10.cfg
|
||||||
|
Start-BitsTransfer -Source \"https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe\" -Destination C:\\Windows\\Temp\\OOSU10.exe
|
||||||
|
C:\\Windows\\Temp\\OOSU10.exe C:\\Windows\\Temp\\ooshutup10.cfg /quiet"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#>
|
||||||
|
|
||||||
|
# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
|
||||||
|
# Make sure to uncomment the sections you which to add.
|
||||||
|
|
||||||
|
#$Registry = @(
|
||||||
|
# # To add more repeat this separated by a comma
|
||||||
|
# @{
|
||||||
|
# Path = ""
|
||||||
|
# Name = ""
|
||||||
|
# Type = ""
|
||||||
|
# Value = ""
|
||||||
|
# OriginalValue = ""
|
||||||
|
# }
|
||||||
|
#)
|
||||||
|
|
||||||
|
#$Service = @(
|
||||||
|
# # To add more repeat this separated by a comma
|
||||||
|
# @{
|
||||||
|
# Name = ""
|
||||||
|
# StartupType = ""
|
||||||
|
# OriginalType = ""
|
||||||
|
# }
|
||||||
|
#)
|
||||||
|
|
||||||
|
#$ScheduledTask = @(
|
||||||
|
# # To add more repeat this separated by a comma
|
||||||
|
# @{
|
||||||
|
# Name = ""
|
||||||
|
# State = ""
|
||||||
|
# OriginalState = ""
|
||||||
|
# }
|
||||||
|
#)
|
||||||
|
|
||||||
|
#$Appx = @(
|
||||||
|
# ""
|
||||||
|
#)
|
||||||
|
|
||||||
|
#$InvokeScript = @(
|
||||||
|
# ""
|
||||||
|
#)
|
||||||
|
|
||||||
|
#$UndoScript = @(
|
||||||
|
# ""
|
||||||
|
#)
|
||||||
|
|
||||||
|
$NameofButton = "WPF" + ""
|
||||||
|
|
||||||
|
$ButtonToAdd = New-Object psobject
|
||||||
|
$jsonfile = Get-Content ./config/tweaks.json | ConvertFrom-Json
|
||||||
|
|
||||||
|
# Remove if already exists
|
||||||
|
if($jsonfile.$NameofButton){
|
||||||
|
$jsonfile.psobject.Properties.remove($NameofButton)
|
||||||
|
}
|
||||||
|
|
||||||
|
if($Registry){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "registry" -Value $Registry}
|
||||||
|
if($Service){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "service" -Value $Service}
|
||||||
|
if($ScheduledTask){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "ScheduledTask" -Value $ScheduledTask}
|
||||||
|
if($Appx){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "Appx" -Value $Appx}
|
||||||
|
if($InvokeScript){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "InvokeScript" -Value $InvokeScript}
|
||||||
|
if($UndoScript){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "UndoScript" -Value $UndoScript}
|
||||||
|
|
||||||
|
Add-Member -InputObject $jsonfile -MemberType NoteProperty -Name $NameofButton -Value $ButtonToAdd
|
||||||
|
|
||||||
|
($jsonfile | ConvertTo-Json -Depth 5).replace('\r\n',"`r`n") | Out-File ./config/tweaks.json
|
||||||
|
|
||||||
|
#===========================================================================
|
||||||
|
# dns.json
|
||||||
|
#===========================================================================
|
||||||
|
|
||||||
|
<#
|
||||||
|
dns.json
|
||||||
|
-----------------
|
||||||
|
This file holds all the DNS entries.
|
||||||
|
|
||||||
|
The structure of the json is as follows
|
||||||
|
|
||||||
|
{
|
||||||
|
"DNS Provider": [
|
||||||
|
"Primary": "IP address",
|
||||||
|
"Secondary": "IP address"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Example:
|
||||||
|
{
|
||||||
|
"Cloudflare":{
|
||||||
|
"Primary": "1.1.1.1",
|
||||||
|
"Secondary": "1.0.0.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#>
|
||||||
|
|
||||||
|
# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
|
||||||
|
|
||||||
|
$NameofProvider = "" -replace " ","_"
|
||||||
|
$IPAddress = @{
|
||||||
|
"Primary" = "0.0.0.0"
|
||||||
|
"Secondary" = "0.0.0.0"
|
||||||
|
}
|
||||||
|
|
||||||
|
$ButtonToAdd = New-Object psobject
|
||||||
|
$jsonfile = Get-Content ./config/dns.json | ConvertFrom-Json
|
||||||
|
|
||||||
|
# Remove if already exists
|
||||||
|
if($jsonfile.$NameofProvider){
|
||||||
|
$jsonfile.psobject.Properties.remove($NameofProvider)
|
||||||
|
}
|
||||||
|
|
||||||
|
Add-Member -InputObject $jsonfile -MemberType NoteProperty -Name $NameofProvider -Value $IPAddress
|
||||||
|
|
||||||
|
($jsonfile | ConvertTo-Json -Depth 5).replace('\r\n',"`r`n") | Out-File ./config/dns.json
|
244
config/ooshutup10_factory.cfg
Normal file
@ -0,0 +1,244 @@
|
|||||||
|
############################################################################
|
||||||
|
# This file was created with O&O ShutUp10++ V1.9.1436
|
||||||
|
# and can be imported onto another computer.
|
||||||
|
#
|
||||||
|
# Download the application at https://www.oo-software.com/shutup10
|
||||||
|
# You can then import the file from within the program.
|
||||||
|
#
|
||||||
|
# Alternatively you can import it automatically over a command line.
|
||||||
|
# Simply use the following parameter:
|
||||||
|
# OOSU10.exe <path to file>
|
||||||
|
#
|
||||||
|
# Selecting the Option /quiet ends the app right after the import and the
|
||||||
|
# user does not get any feedback about the import.
|
||||||
|
#
|
||||||
|
# We are always happy to answer any questions you may have!
|
||||||
|
# © 2015-2023 O&O Software GmbH, Berlin. All rights reserved.
|
||||||
|
# https://www.oo-software.com/
|
||||||
|
############################################################################
|
||||||
|
|
||||||
|
P001 -
|
||||||
|
P002 -
|
||||||
|
P003 -
|
||||||
|
P004 -
|
||||||
|
P005 -
|
||||||
|
P006 -
|
||||||
|
P008 -
|
||||||
|
P026 -
|
||||||
|
P027 -
|
||||||
|
P028 -
|
||||||
|
P064 -
|
||||||
|
P065 -
|
||||||
|
P066 -
|
||||||
|
P067 -
|
||||||
|
P070 -
|
||||||
|
P069 -
|
||||||
|
P009 -
|
||||||
|
P010 -
|
||||||
|
P015 -
|
||||||
|
P068 -
|
||||||
|
P016 -
|
||||||
|
A001 -
|
||||||
|
A002 -
|
||||||
|
A003 -
|
||||||
|
A004 -
|
||||||
|
A006 -
|
||||||
|
A005 -
|
||||||
|
P007 -
|
||||||
|
P036 -
|
||||||
|
P025 -
|
||||||
|
P033 -
|
||||||
|
P023 -
|
||||||
|
P056 -
|
||||||
|
P057 -
|
||||||
|
P012 -
|
||||||
|
P034 -
|
||||||
|
P013 -
|
||||||
|
P035 -
|
||||||
|
P062 -
|
||||||
|
P063 -
|
||||||
|
P081 -
|
||||||
|
P047 -
|
||||||
|
P019 -
|
||||||
|
P048 -
|
||||||
|
P049 -
|
||||||
|
P020 -
|
||||||
|
P037 -
|
||||||
|
P011 -
|
||||||
|
P038 -
|
||||||
|
P050 -
|
||||||
|
P051 -
|
||||||
|
P018 -
|
||||||
|
P039 -
|
||||||
|
P021 -
|
||||||
|
P040 -
|
||||||
|
P022 -
|
||||||
|
P041 -
|
||||||
|
P014 -
|
||||||
|
P042 -
|
||||||
|
P052 -
|
||||||
|
P053 -
|
||||||
|
P054 -
|
||||||
|
P055 -
|
||||||
|
P029 -
|
||||||
|
P043 -
|
||||||
|
P030 -
|
||||||
|
P044 -
|
||||||
|
P031 -
|
||||||
|
P045 -
|
||||||
|
P032 -
|
||||||
|
P046 -
|
||||||
|
P058 -
|
||||||
|
P059 -
|
||||||
|
P060 -
|
||||||
|
P061 -
|
||||||
|
P071 -
|
||||||
|
P072 -
|
||||||
|
P073 -
|
||||||
|
P074 -
|
||||||
|
P075 -
|
||||||
|
P076 -
|
||||||
|
P077 -
|
||||||
|
P078 -
|
||||||
|
P079 -
|
||||||
|
P080 -
|
||||||
|
P024 -
|
||||||
|
S001 -
|
||||||
|
S002 -
|
||||||
|
S003 -
|
||||||
|
S008 -
|
||||||
|
E101 -
|
||||||
|
E201 -
|
||||||
|
E115 -
|
||||||
|
E215 -
|
||||||
|
E118 -
|
||||||
|
E218 -
|
||||||
|
E107 -
|
||||||
|
E207 -
|
||||||
|
E111 -
|
||||||
|
E211 -
|
||||||
|
E112 -
|
||||||
|
E212 -
|
||||||
|
E109 -
|
||||||
|
E209 -
|
||||||
|
E121 -
|
||||||
|
E221 -
|
||||||
|
E103 -
|
||||||
|
E203 -
|
||||||
|
E123 -
|
||||||
|
E223 -
|
||||||
|
E124 -
|
||||||
|
E224 -
|
||||||
|
E128 -
|
||||||
|
E228 -
|
||||||
|
E119 -
|
||||||
|
E219 -
|
||||||
|
E120 -
|
||||||
|
E220 -
|
||||||
|
E122 -
|
||||||
|
E222 -
|
||||||
|
E125 -
|
||||||
|
E225 -
|
||||||
|
E126 -
|
||||||
|
E226 -
|
||||||
|
E106 -
|
||||||
|
E206 -
|
||||||
|
E127 -
|
||||||
|
E227 -
|
||||||
|
E001 -
|
||||||
|
E002 -
|
||||||
|
E003 -
|
||||||
|
E008 -
|
||||||
|
E007 -
|
||||||
|
E010 -
|
||||||
|
E011 +
|
||||||
|
E012 +
|
||||||
|
E009 -
|
||||||
|
E004 -
|
||||||
|
E005 -
|
||||||
|
E013 -
|
||||||
|
E014 -
|
||||||
|
E006 -
|
||||||
|
F002 -
|
||||||
|
F014 -
|
||||||
|
F015 -
|
||||||
|
F016 -
|
||||||
|
F001 -
|
||||||
|
F003 -
|
||||||
|
F004 -
|
||||||
|
F005 -
|
||||||
|
F007 -
|
||||||
|
F008 -
|
||||||
|
F009 -
|
||||||
|
F006 -
|
||||||
|
F010 -
|
||||||
|
F011 -
|
||||||
|
F012 -
|
||||||
|
F013 -
|
||||||
|
Y001 -
|
||||||
|
Y002 -
|
||||||
|
Y003 -
|
||||||
|
Y004 -
|
||||||
|
Y005 -
|
||||||
|
Y006 -
|
||||||
|
Y007 -
|
||||||
|
C012 -
|
||||||
|
C002 -
|
||||||
|
C013 -
|
||||||
|
C007 -
|
||||||
|
C008 -
|
||||||
|
C009 -
|
||||||
|
C010 -
|
||||||
|
C011 -
|
||||||
|
C014 -
|
||||||
|
C015 -
|
||||||
|
C101 -
|
||||||
|
C201 -
|
||||||
|
C102 -
|
||||||
|
L001 -
|
||||||
|
L003 -
|
||||||
|
L004 -
|
||||||
|
L005 -
|
||||||
|
U001 -
|
||||||
|
U004 -
|
||||||
|
U005 -
|
||||||
|
U006 -
|
||||||
|
U007 -
|
||||||
|
W001 -
|
||||||
|
W011 -
|
||||||
|
W004 -
|
||||||
|
W005 -
|
||||||
|
W010 -
|
||||||
|
W009 -
|
||||||
|
P017 -
|
||||||
|
W006 -
|
||||||
|
W008 -
|
||||||
|
M006 -
|
||||||
|
M011 -
|
||||||
|
M010 -
|
||||||
|
O003 -
|
||||||
|
O001 -
|
||||||
|
S012 -
|
||||||
|
S013 -
|
||||||
|
S014 -
|
||||||
|
K001 -
|
||||||
|
K002 -
|
||||||
|
K005 -
|
||||||
|
M025 -
|
||||||
|
M003 -
|
||||||
|
M015 -
|
||||||
|
M016 -
|
||||||
|
M017 -
|
||||||
|
M018 -
|
||||||
|
M019 -
|
||||||
|
M020 -
|
||||||
|
M021 -
|
||||||
|
M022 -
|
||||||
|
M001 -
|
||||||
|
M004 -
|
||||||
|
M005 -
|
||||||
|
M024 -
|
||||||
|
M012 -
|
||||||
|
M013 -
|
||||||
|
M014 -
|
||||||
|
N001 -
|
244
config/ooshutup10_recommended.cfg
Normal file
@ -0,0 +1,244 @@
|
|||||||
|
############################################################################
|
||||||
|
# This file was created with O&O ShutUp10++ V1.9.1436
|
||||||
|
# and can be imported onto another computer.
|
||||||
|
#
|
||||||
|
# Download the application at https://www.oo-software.com/shutup10
|
||||||
|
# You can then import the file from within the program.
|
||||||
|
#
|
||||||
|
# Alternatively you can import it automatically over a command line.
|
||||||
|
# Simply use the following parameter:
|
||||||
|
# OOSU10.exe <path to file>
|
||||||
|
#
|
||||||
|
# Selecting the Option /quiet ends the app right after the import and the
|
||||||
|
# user does not get any feedback about the import.
|
||||||
|
#
|
||||||
|
# We are always happy to answer any questions you may have!
|
||||||
|
# © 2015-2023 O&O Software GmbH, Berlin. All rights reserved.
|
||||||
|
# https://www.oo-software.com/
|
||||||
|
############################################################################
|
||||||
|
|
||||||
|
P001 +
|
||||||
|
P002 +
|
||||||
|
P003 +
|
||||||
|
P004 +
|
||||||
|
P005 +
|
||||||
|
P006 +
|
||||||
|
P008 +
|
||||||
|
P026 +
|
||||||
|
P027 +
|
||||||
|
P028 +
|
||||||
|
P064 +
|
||||||
|
P065 +
|
||||||
|
P066 +
|
||||||
|
P067 +
|
||||||
|
P070 +
|
||||||
|
P069 +
|
||||||
|
P009 -
|
||||||
|
P010 -
|
||||||
|
P015 -
|
||||||
|
P068 -
|
||||||
|
P016 -
|
||||||
|
A001 +
|
||||||
|
A002 +
|
||||||
|
A003 +
|
||||||
|
A004 +
|
||||||
|
A006 +
|
||||||
|
A005 +
|
||||||
|
P007 +
|
||||||
|
P036 +
|
||||||
|
P025 +
|
||||||
|
P033 +
|
||||||
|
P023 +
|
||||||
|
P056 -
|
||||||
|
P057 -
|
||||||
|
P012 -
|
||||||
|
P034 -
|
||||||
|
P013 -
|
||||||
|
P035 -
|
||||||
|
P062 -
|
||||||
|
P063 -
|
||||||
|
P081 -
|
||||||
|
P047 -
|
||||||
|
P019 -
|
||||||
|
P048 -
|
||||||
|
P049 -
|
||||||
|
P020 -
|
||||||
|
P037 -
|
||||||
|
P011 -
|
||||||
|
P038 -
|
||||||
|
P050 -
|
||||||
|
P051 -
|
||||||
|
P018 -
|
||||||
|
P039 -
|
||||||
|
P021 -
|
||||||
|
P040 -
|
||||||
|
P022 -
|
||||||
|
P041 -
|
||||||
|
P014 -
|
||||||
|
P042 -
|
||||||
|
P052 -
|
||||||
|
P053 -
|
||||||
|
P054 -
|
||||||
|
P055 -
|
||||||
|
P029 -
|
||||||
|
P043 -
|
||||||
|
P030 -
|
||||||
|
P044 -
|
||||||
|
P031 -
|
||||||
|
P045 -
|
||||||
|
P032 -
|
||||||
|
P046 -
|
||||||
|
P058 -
|
||||||
|
P059 -
|
||||||
|
P060 -
|
||||||
|
P061 -
|
||||||
|
P071 -
|
||||||
|
P072 -
|
||||||
|
P073 -
|
||||||
|
P074 -
|
||||||
|
P075 -
|
||||||
|
P076 -
|
||||||
|
P077 -
|
||||||
|
P078 -
|
||||||
|
P079 -
|
||||||
|
P080 -
|
||||||
|
P024 -
|
||||||
|
S001 +
|
||||||
|
S002 +
|
||||||
|
S003 +
|
||||||
|
S008 -
|
||||||
|
E101 +
|
||||||
|
E201 +
|
||||||
|
E115 +
|
||||||
|
E215 +
|
||||||
|
E118 +
|
||||||
|
E218 +
|
||||||
|
E107 +
|
||||||
|
E207 +
|
||||||
|
E111 +
|
||||||
|
E211 +
|
||||||
|
E112 +
|
||||||
|
E212 +
|
||||||
|
E109 +
|
||||||
|
E209 +
|
||||||
|
E121 +
|
||||||
|
E221 +
|
||||||
|
E103 +
|
||||||
|
E203 +
|
||||||
|
E123 +
|
||||||
|
E223 +
|
||||||
|
E124 +
|
||||||
|
E224 +
|
||||||
|
E128 +
|
||||||
|
E228 +
|
||||||
|
E119 -
|
||||||
|
E219 -
|
||||||
|
E120 -
|
||||||
|
E220 -
|
||||||
|
E122 -
|
||||||
|
E222 -
|
||||||
|
E125 -
|
||||||
|
E225 -
|
||||||
|
E126 -
|
||||||
|
E226 -
|
||||||
|
E106 -
|
||||||
|
E206 -
|
||||||
|
E127 -
|
||||||
|
E227 -
|
||||||
|
E001 +
|
||||||
|
E002 +
|
||||||
|
E003 +
|
||||||
|
E008 +
|
||||||
|
E007 +
|
||||||
|
E010 +
|
||||||
|
E011 +
|
||||||
|
E012 +
|
||||||
|
E009 -
|
||||||
|
E004 -
|
||||||
|
E005 -
|
||||||
|
E013 -
|
||||||
|
E014 -
|
||||||
|
E006 -
|
||||||
|
F002 +
|
||||||
|
F014 +
|
||||||
|
F015 +
|
||||||
|
F016 +
|
||||||
|
F001 +
|
||||||
|
F003 +
|
||||||
|
F004 +
|
||||||
|
F005 +
|
||||||
|
F007 +
|
||||||
|
F008 +
|
||||||
|
F009 +
|
||||||
|
F006 -
|
||||||
|
F010 -
|
||||||
|
F011 -
|
||||||
|
F012 -
|
||||||
|
F013 -
|
||||||
|
Y001 +
|
||||||
|
Y002 +
|
||||||
|
Y003 +
|
||||||
|
Y004 +
|
||||||
|
Y005 +
|
||||||
|
Y006 +
|
||||||
|
Y007 +
|
||||||
|
C012 +
|
||||||
|
C002 +
|
||||||
|
C013 +
|
||||||
|
C007 +
|
||||||
|
C008 +
|
||||||
|
C009 +
|
||||||
|
C010 +
|
||||||
|
C011 +
|
||||||
|
C014 +
|
||||||
|
C015 +
|
||||||
|
C101 +
|
||||||
|
C201 +
|
||||||
|
C102 +
|
||||||
|
L001 +
|
||||||
|
L003 +
|
||||||
|
L004 -
|
||||||
|
L005 -
|
||||||
|
U001 +
|
||||||
|
U004 +
|
||||||
|
U005 +
|
||||||
|
U006 +
|
||||||
|
U007 +
|
||||||
|
W001 +
|
||||||
|
W011 +
|
||||||
|
W004 -
|
||||||
|
W005 -
|
||||||
|
W010 -
|
||||||
|
W009 -
|
||||||
|
P017 -
|
||||||
|
W006 -
|
||||||
|
W008 -
|
||||||
|
M006 +
|
||||||
|
M011 -
|
||||||
|
M010 -
|
||||||
|
O003 -
|
||||||
|
O001 -
|
||||||
|
S012 -
|
||||||
|
S013 -
|
||||||
|
S014 -
|
||||||
|
K001 +
|
||||||
|
K002 +
|
||||||
|
K005 +
|
||||||
|
M025 +
|
||||||
|
M003 -
|
||||||
|
M015 -
|
||||||
|
M016 -
|
||||||
|
M017 -
|
||||||
|
M018 -
|
||||||
|
M019 -
|
||||||
|
M020 -
|
||||||
|
M021 -
|
||||||
|
M022 +
|
||||||
|
M001 +
|
||||||
|
M004 +
|
||||||
|
M005 +
|
||||||
|
M024 +
|
||||||
|
M012 -
|
||||||
|
M013 -
|
||||||
|
M014 -
|
||||||
|
N001 -
|
@ -1,25 +1,31 @@
|
|||||||
{
|
{
|
||||||
"Standard": [
|
"desktop": [
|
||||||
"WPFTweaksAH",
|
"WPFTweaksAH",
|
||||||
"WPFTweaksConsumerFeatures",
|
|
||||||
"WPFTweaksDVR",
|
"WPFTweaksDVR",
|
||||||
"WPFTweaksHiber",
|
"WPFTweaksHiber",
|
||||||
"WPFTweaksHome",
|
"WPFTweaksHome",
|
||||||
"WPFTweaksLoc",
|
"WPFTweaksLoc",
|
||||||
|
"WPFTweaksOO",
|
||||||
|
"WPFTweaksServices",
|
||||||
|
"WPFTweaksStorage",
|
||||||
|
"WPFTweaksTele",
|
||||||
|
"WPFTweaksWifi"
|
||||||
|
],
|
||||||
|
"laptop": [
|
||||||
|
"WPFTweaksAH",
|
||||||
|
"WPFTweaksDVR",
|
||||||
|
"WPFTweaksHome",
|
||||||
|
"WPFTweaksLoc",
|
||||||
|
"WPFTweaksOO",
|
||||||
"WPFTweaksServices",
|
"WPFTweaksServices",
|
||||||
"WPFTweaksStorage",
|
"WPFTweaksStorage",
|
||||||
"WPFTweaksTele",
|
"WPFTweaksTele",
|
||||||
"WPFTweaksWifi",
|
"WPFTweaksWifi",
|
||||||
"WPFTweaksDiskCleanup",
|
"WPFMiscTweaksLapPower"
|
||||||
"WPFTweaksDeleteTempFiles",
|
|
||||||
"WPFTweaksEndTaskOnTaskbar",
|
|
||||||
"WPFTweaksRestorePoint",
|
|
||||||
"WPFTweaksTeredo",
|
|
||||||
"WPFTweaksPowershell7Tele"
|
|
||||||
],
|
],
|
||||||
"Minimal": [
|
"minimal": [
|
||||||
"WPFTweaksConsumerFeatures",
|
|
||||||
"WPFTweaksHome",
|
"WPFTweaksHome",
|
||||||
|
"WPFTweaksOO",
|
||||||
"WPFTweaksServices",
|
"WPFTweaksServices",
|
||||||
"WPFTweaksTele"
|
"WPFTweaksTele"
|
||||||
]
|
]
|
||||||
|
@ -1,30 +1,5 @@
|
|||||||
{
|
{
|
||||||
"Classic": {
|
"Classic": {
|
||||||
"CustomDialogFontSize": "12",
|
|
||||||
"CustomDialogFontSizeHeader": "14",
|
|
||||||
"CustomDialogIconSize": "25",
|
|
||||||
"CustomDialogWidth": "400",
|
|
||||||
"CustomDialogHeight": "200",
|
|
||||||
|
|
||||||
"FontSize": "12",
|
|
||||||
"FontFamily": "Arial",
|
|
||||||
"FontSizeHeading": "14",
|
|
||||||
"HeaderFontFamily": "Consolas, Monaco",
|
|
||||||
|
|
||||||
"CheckBoxBulletDecoratorFontSize": "14",
|
|
||||||
"CheckBoxMargin": "15,0,0,2",
|
|
||||||
|
|
||||||
"TabButtonFontSize": "14",
|
|
||||||
"TabButtonWidth": "100",
|
|
||||||
"TabButtonHeight": "25",
|
|
||||||
"TabRowHeightInPixels": "50",
|
|
||||||
"IconFontSize": "14",
|
|
||||||
"IconButtonSize": "35",
|
|
||||||
"WinUtilIconSize": "Auto",
|
|
||||||
"SettingsIconFontSize": "18",
|
|
||||||
|
|
||||||
"MicroWinLogoSize": "10",
|
|
||||||
|
|
||||||
"ComboBoxBackgroundColor": "#FFFFFF",
|
"ComboBoxBackgroundColor": "#FFFFFF",
|
||||||
"LabelboxForegroundColor": "#000000",
|
"LabelboxForegroundColor": "#000000",
|
||||||
"MainForegroundColor": "#000000",
|
"MainForegroundColor": "#000000",
|
||||||
@ -34,18 +9,6 @@
|
|||||||
"LinkHoverForegroundColor": "#000000",
|
"LinkHoverForegroundColor": "#000000",
|
||||||
"GroupBorderBackgroundColor": "#000000",
|
"GroupBorderBackgroundColor": "#000000",
|
||||||
"ComboBoxForegroundColor": "#000000",
|
"ComboBoxForegroundColor": "#000000",
|
||||||
|
|
||||||
"ButtonFontSize": "12",
|
|
||||||
"ButtonFontFamily": "Arial",
|
|
||||||
"ButtonWidth": "200",
|
|
||||||
"ButtonHeight": "25",
|
|
||||||
"ConfigTabButtonFontSize": "16",
|
|
||||||
|
|
||||||
"SearchBarWidth": "200",
|
|
||||||
"SearchBarHeight": "25",
|
|
||||||
"SearchBarTextBoxFontSize": "16",
|
|
||||||
"SearchBarClearButtonFontSize": "14",
|
|
||||||
|
|
||||||
"ButtonInstallBackgroundColor": "#FFFFFF",
|
"ButtonInstallBackgroundColor": "#FFFFFF",
|
||||||
"ButtonTweaksBackgroundColor": "#FFFFFF",
|
"ButtonTweaksBackgroundColor": "#FFFFFF",
|
||||||
"ButtonConfigBackgroundColor": "#FFFFFF",
|
"ButtonConfigBackgroundColor": "#FFFFFF",
|
||||||
@ -60,41 +23,15 @@
|
|||||||
"ButtonBackgroundMouseoverColor": "#C2C2C2",
|
"ButtonBackgroundMouseoverColor": "#C2C2C2",
|
||||||
"ButtonBackgroundSelectedColor": "#F0F0F0",
|
"ButtonBackgroundSelectedColor": "#F0F0F0",
|
||||||
"ButtonForegroundColor": "#000000",
|
"ButtonForegroundColor": "#000000",
|
||||||
"ToggleButtonOnColor": "#2e77ff",
|
|
||||||
|
|
||||||
"ButtonBorderThickness": "1",
|
"ButtonBorderThickness": "1",
|
||||||
"ButtonMargin": "1",
|
"ButtonMargin": "1",
|
||||||
"ButtonCornerRadius": "2",
|
"ButtonCornerRadius": "2",
|
||||||
|
"ToggleButtonHeight": "25",
|
||||||
"BorderColor": "#000000",
|
"BorderColor": "#000000",
|
||||||
"BorderOpacity": "0.2",
|
"BorderOpacity": "0.2",
|
||||||
"ShadowPulse": "Forever"
|
"ShadowPulse": "Forever"
|
||||||
},
|
},
|
||||||
"Matrix": {
|
"Matrix": {
|
||||||
"CustomDialogFontSize": "12",
|
|
||||||
"CustomDialogFontSizeHeader": "14",
|
|
||||||
"CustomDialogIconSize": "25",
|
|
||||||
"CustomDialogWidth": "400",
|
|
||||||
"CustomDialogHeight": "200",
|
|
||||||
|
|
||||||
"FontSize": "12",
|
|
||||||
"FontFamily": "Arial",
|
|
||||||
"FontSizeHeading": "14",
|
|
||||||
"HeaderFontFamily": "Consolas, Monaco",
|
|
||||||
|
|
||||||
"CheckBoxBulletDecoratorFontSize": "14",
|
|
||||||
"CheckBoxMargin": "15,0,0,2",
|
|
||||||
|
|
||||||
"TabButtonFontSize": "14",
|
|
||||||
"TabButtonWidth": "100",
|
|
||||||
"TabButtonHeight": "25",
|
|
||||||
"TabRowHeightInPixels": "50",
|
|
||||||
"IconFontSize": "14",
|
|
||||||
"IconButtonSize": "35",
|
|
||||||
"WinUtilIconSize": "Auto",
|
|
||||||
"SettingsIconFontSize": "18",
|
|
||||||
|
|
||||||
"MicroWinLogoSize": "10",
|
|
||||||
|
|
||||||
"ComboBoxBackgroundColor": "#000000",
|
"ComboBoxBackgroundColor": "#000000",
|
||||||
"LabelboxForegroundColor": "#FFEE58",
|
"LabelboxForegroundColor": "#FFEE58",
|
||||||
"MainForegroundColor": "#9CCC65",
|
"MainForegroundColor": "#9CCC65",
|
||||||
@ -103,18 +40,6 @@
|
|||||||
"LinkForegroundColor": "#add8e6",
|
"LinkForegroundColor": "#add8e6",
|
||||||
"LinkHoverForegroundColor": "#FFFFFF",
|
"LinkHoverForegroundColor": "#FFFFFF",
|
||||||
"ComboBoxForegroundColor": "#FFEE58",
|
"ComboBoxForegroundColor": "#FFEE58",
|
||||||
|
|
||||||
"ButtonFontSize": "12",
|
|
||||||
"ButtonFontFamily": "Arial",
|
|
||||||
"ButtonWidth": "200",
|
|
||||||
"ButtonHeight": "25",
|
|
||||||
"ConfigTabButtonFontSize": "16",
|
|
||||||
|
|
||||||
"SearchBarWidth": "200",
|
|
||||||
"SearchBarHeight": "25",
|
|
||||||
"SearchBarTextBoxFontSize": "16",
|
|
||||||
"SearchBarClearButtonFontSize": "14",
|
|
||||||
|
|
||||||
"ButtonInstallBackgroundColor": "#222222",
|
"ButtonInstallBackgroundColor": "#222222",
|
||||||
"ButtonTweaksBackgroundColor": "#333333",
|
"ButtonTweaksBackgroundColor": "#333333",
|
||||||
"ButtonConfigBackgroundColor": "#444444",
|
"ButtonConfigBackgroundColor": "#444444",
|
||||||
@ -128,41 +53,15 @@
|
|||||||
"ButtonBackgroundMouseoverColor": "#A55A64",
|
"ButtonBackgroundMouseoverColor": "#A55A64",
|
||||||
"ButtonBackgroundSelectedColor": "#FF5733",
|
"ButtonBackgroundSelectedColor": "#FF5733",
|
||||||
"ButtonForegroundColor": "#9CCC65",
|
"ButtonForegroundColor": "#9CCC65",
|
||||||
"ToggleButtonOnColor": "#2e77ff",
|
|
||||||
|
|
||||||
"ButtonBorderThickness": "1",
|
"ButtonBorderThickness": "1",
|
||||||
"ButtonMargin": "1",
|
"ButtonMargin": "1",
|
||||||
"ButtonCornerRadius": "2",
|
"ButtonCornerRadius": "2",
|
||||||
|
"ToggleButtonHeight": "25",
|
||||||
"BorderColor": "#FFAC1C",
|
"BorderColor": "#FFAC1C",
|
||||||
"BorderOpacity": "0.8",
|
"BorderOpacity": "0.8",
|
||||||
"ShadowPulse": "0:0:3"
|
"ShadowPulse": "0:0:3"
|
||||||
},
|
},
|
||||||
"Dark": {
|
"Dark": {
|
||||||
"CustomDialogFontSize": "12",
|
|
||||||
"CustomDialogFontSizeHeader": "14",
|
|
||||||
"CustomDialogIconSize": "25",
|
|
||||||
"CustomDialogWidth": "400",
|
|
||||||
"CustomDialogHeight": "200",
|
|
||||||
|
|
||||||
"FontSize": "12",
|
|
||||||
"FontFamily": "Arial",
|
|
||||||
"FontSizeHeading": "14",
|
|
||||||
"HeaderFontFamily": "Consolas, Monaco",
|
|
||||||
|
|
||||||
"CheckBoxBulletDecoratorFontSize": "14",
|
|
||||||
"CheckBoxMargin": "15,0,0,2",
|
|
||||||
|
|
||||||
"TabButtonFontSize": "14",
|
|
||||||
"TabButtonWidth": "100",
|
|
||||||
"TabButtonHeight": "25",
|
|
||||||
"TabRowHeightInPixels": "50",
|
|
||||||
"IconFontSize": "14",
|
|
||||||
"IconButtonSize": "35",
|
|
||||||
"WinUtilIconSize": "Auto",
|
|
||||||
"SettingsIconFontSize": "18",
|
|
||||||
|
|
||||||
"MicroWinLogoSize": "10",
|
|
||||||
|
|
||||||
"ComboBoxBackgroundColor": "#000000",
|
"ComboBoxBackgroundColor": "#000000",
|
||||||
"LabelboxForegroundColor": "#FFEE58",
|
"LabelboxForegroundColor": "#FFEE58",
|
||||||
"MainForegroundColor": "#9CCC65",
|
"MainForegroundColor": "#9CCC65",
|
||||||
@ -171,18 +70,6 @@
|
|||||||
"LinkForegroundColor": "#add8e6",
|
"LinkForegroundColor": "#add8e6",
|
||||||
"LinkHoverForegroundColor": "#FFFFFF",
|
"LinkHoverForegroundColor": "#FFFFFF",
|
||||||
"ComboBoxForegroundColor": "#FFEE58",
|
"ComboBoxForegroundColor": "#FFEE58",
|
||||||
|
|
||||||
"ButtonFontSize": "12",
|
|
||||||
"ButtonFontFamily": "Arial",
|
|
||||||
"ButtonWidth": "200",
|
|
||||||
"ButtonHeight": "25",
|
|
||||||
"ConfigTabButtonFontSize": "16",
|
|
||||||
|
|
||||||
"SearchBarWidth": "200",
|
|
||||||
"SearchBarHeight": "25",
|
|
||||||
"SearchBarTextBoxFontSize": "16",
|
|
||||||
"SearchBarClearButtonFontSize": "14",
|
|
||||||
|
|
||||||
"ButtonInstallBackgroundColor": "#222222",
|
"ButtonInstallBackgroundColor": "#222222",
|
||||||
"ButtonTweaksBackgroundColor": "#333333",
|
"ButtonTweaksBackgroundColor": "#333333",
|
||||||
"ButtonConfigBackgroundColor": "#444444",
|
"ButtonConfigBackgroundColor": "#444444",
|
||||||
@ -196,11 +83,10 @@
|
|||||||
"ButtonBackgroundMouseoverColor": "#FF5733",
|
"ButtonBackgroundMouseoverColor": "#FF5733",
|
||||||
"ButtonBackgroundSelectedColor": "#FF5733",
|
"ButtonBackgroundSelectedColor": "#FF5733",
|
||||||
"ButtonForegroundColor": "#9CCC65",
|
"ButtonForegroundColor": "#9CCC65",
|
||||||
"ToggleButtonOnColor": "#2e77ff",
|
|
||||||
|
|
||||||
"ButtonBorderThickness": "1",
|
"ButtonBorderThickness": "1",
|
||||||
"ButtonMargin": "1",
|
"ButtonMargin": "1",
|
||||||
"ButtonCornerRadius": "2",
|
"ButtonCornerRadius": "2",
|
||||||
|
"ToggleButtonHeight": "25",
|
||||||
"BorderColor": "#FFAC1C",
|
"BorderColor": "#FFAC1C",
|
||||||
"BorderOpacity": "0.2",
|
"BorderOpacity": "0.2",
|
||||||
"ShadowPulse": "Forever"
|
"ShadowPulse": "Forever"
|
||||||
|
1007
config/tweaks.json
@ -1,177 +0,0 @@
|
|||||||
## Known Issues and Fixes
|
|
||||||
|
|
||||||
### Launch Issues:
|
|
||||||
|
|
||||||
- Windows Security (formerly Defender) and other anti-virus software are known to block the script. The script gets flagged due to the fact that it requires administrator privileges & makes drastic system changes.
|
|
||||||
- If possible: Allow script in Anti-Virus software settings.
|
|
||||||
|
|
||||||
- If you are having TLS 1.2 issues, or are having trouble resolving `christitus.com/win` then run with the following command:
|
|
||||||
|
|
||||||
```ps1
|
|
||||||
[Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12;iex(New-Object Net.WebClient).DownloadString('https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1')
|
|
||||||
```
|
|
||||||
|
|
||||||
- If you are unable to resolve `christitus.com/win` and are getting errors launching the tool, it might be due to India blocking GitHub's content domain and preventing downloads.
|
|
||||||
- Source: <https://timesofindia.indiatimes.com/gadgets-news/github-content-domain-blocked-for-these-indian-users-reports/articleshow/96687992.cms>
|
|
||||||
|
|
||||||
If you are still having issues try using a **VPN**, or changing your **DNS provider** to:
|
|
||||||
|
|
||||||
| `1.1.1.1` | `1.0.0.1` | or | `8.8.8.8` | `8.8.4.4` |
|
|
||||||
|---------|---------|-----|---------|---------|
|
|
||||||
|
|
||||||
- Script doesn't run/PowerShell crashes:
|
|
||||||
1. Press Windows Key+X and select 'PowerShell (Admin)' (Windows 10) or 'Windows Terminal (Admin)' (Windows 11)
|
|
||||||
2. Run:
|
|
||||||
```ps1
|
|
||||||
Set-ExecutionPolicy Unrestricted -Scope Process -Force
|
|
||||||
```
|
|
||||||
3. Run:
|
|
||||||
```ps1
|
|
||||||
irm christitus.com/win | iex
|
|
||||||
```
|
|
||||||
|
|
||||||
### Other Issues:
|
|
||||||
|
|
||||||
- Windows taking longer to shut down:
|
|
||||||
- [#69](https://github.com/ChrisTitusTech/winutil/issues/69) Turn on fast startup: Press Windows key + R, then type:
|
|
||||||
```
|
|
||||||
control /name Microsoft.PowerOptions /page pageGlobalSettings
|
|
||||||
```
|
|
||||||
- If that doesn't work, Disable Hibernation: Press Windows Key+X and select 'PowerShell (Admin)' (Windows 10) or 'Windows Terminal (Admin)' (Windows 11) and enter:
|
|
||||||
```ps1
|
|
||||||
powercfg /H off
|
|
||||||
```
|
|
||||||
- [#69](https://github.com/ChrisTitusTech/winutil/issues/69) [95](https://github.com/ChrisTitusTech/winutil/issues/95) [#232](https://github.com/ChrisTitusTech/winutil/issues/232) Windows Search does not work: Enable Background Apps
|
|
||||||
- [#198](https://github.com/ChrisTitusTech/winutil/issues/198) Xbox Game Bar Activation Broken: Set the Xbox Accessory Management Service to Automatic
|
|
||||||
```ps1
|
|
||||||
Get-Service -Name "XboxGipSvc" | Set-Service -StartupType Automatic
|
|
||||||
```
|
|
||||||
|
|
||||||
- Winget requires interaction on first run: Manually type 'y' and 'enter' into the PowerShell console to continue
|
|
||||||
- (Windows 11) Quick Settings no longer works: Launch the Script and click 'Enable Action Center'
|
|
||||||
|
|
||||||
- Explorer no longer launches: Go to Control Panel, File Explorer Options, Change the 'Open File Explorer to' option to 'This PC'.
|
|
||||||
|
|
||||||
### Battery drains too fast.
|
|
||||||
When your battery on the laptop drains too fast, please perform these steps and report the results back to the Winutil community.
|
|
||||||
|
|
||||||
1. **Check Battery Health:**
|
|
||||||
- Open a Command Prompt as an administrator.
|
|
||||||
- Run the following command to generate a battery report:
|
|
||||||
```powershell
|
|
||||||
powercfg /batteryreport /output "C:\battery_report.html"
|
|
||||||
```
|
|
||||||
- Open the generated HTML report to review information about battery health and usage.
|
|
||||||
|
|
||||||
2. **Review Power Settings:**
|
|
||||||
- Go to "Settings" > "System" > "Power & sleep."
|
|
||||||
- Adjust power plan settings based on your preferences and usage patterns.
|
|
||||||
- Click on "Additional power settings" to access advanced power settings.
|
|
||||||
|
|
||||||
3. **Identify Power-Hungry Apps:**
|
|
||||||
- Right-click on the taskbar and select "Task Manager."
|
|
||||||
- Navigate to the "Processes" tab to identify applications with high CPU or memory usage.
|
|
||||||
- Consider closing unnecessary background applications.
|
|
||||||
|
|
||||||
4. **Update Drivers:**
|
|
||||||
- Visit your laptop manufacturer's website or use Windows Update to check for driver updates.
|
|
||||||
- Ensure graphics, chipset, and other essential drivers are up to date.
|
|
||||||
|
|
||||||
5. **Check for Windows Updates:**
|
|
||||||
- Go to "Settings" > "Update & Security" > "Windows Update."
|
|
||||||
- Check for and install any available updates for your operating system.
|
|
||||||
|
|
||||||
6. **Reduce Screen Brightness:**
|
|
||||||
- Adjust screen brightness based on your preferences and lighting conditions.
|
|
||||||
- Go to "Settings" > "System" > "Display" to adjust brightness.
|
|
||||||
|
|
||||||
7. **Battery Saver Mode:**
|
|
||||||
- Go to "Settings" > "System" > "Battery."
|
|
||||||
- Turn on "Battery saver" to limit background activity and conserve power.
|
|
||||||
|
|
||||||
8. **Check Power Usage in Settings:**
|
|
||||||
- Go to "Settings" > "System" > "Battery" > "Battery usage by app."
|
|
||||||
- Review the list of apps and their power usage.
|
|
||||||
|
|
||||||
9. **Check Background Apps:**
|
|
||||||
- Go to "Settings" > "Privacy" > "Background apps."
|
|
||||||
- Disable unnecessary apps running in the background.
|
|
||||||
|
|
||||||
10. **Use Powercfg for Analysis:**
|
|
||||||
- Open a Command Prompt as an administrator.
|
|
||||||
- Run the following command to analyze energy usage and generate a report:
|
|
||||||
```powershell
|
|
||||||
powercfg /energy /output "C:\energy_report.html"
|
|
||||||
```
|
|
||||||
- Open the generated HTML report to identify energy consumption patterns.
|
|
||||||
|
|
||||||
11. **Review Event Viewer:**
|
|
||||||
- Open Event Viewer by searching for it in the Start menu.
|
|
||||||
- Navigate to "Windows Logs" > "System."
|
|
||||||
- Look for events with the source "Power-Troubleshooter" to identify power-related events.
|
|
||||||
|
|
||||||
12. **Check Wake-up Sources:**
|
|
||||||
- Open a Command Prompt as an administrator.
|
|
||||||
- Use the command `powercfg /requests` to identify processes preventing sleep.
|
|
||||||
- Check Task Scheduler for tasks waking up the computer.
|
|
||||||
- Use the command `powercfg /waketimers` to view active wake timers.
|
|
||||||
|
|
||||||
13. **Resource Monitor:**
|
|
||||||
- Open Resource Monitor from the Start menu.
|
|
||||||
- Navigate to the "CPU" tab and identify processes with high CPU usage.
|
|
||||||
|
|
||||||
14. **Windows Settings - Activity History:**
|
|
||||||
- In "Settings," go to "Privacy" > "Activity history."
|
|
||||||
- Turn off "Let Windows collect my activities from this PC."
|
|
||||||
|
|
||||||
15. **Network Adapters:**
|
|
||||||
- Open Device Manager by searching for it in the Start menu.
|
|
||||||
- Locate your network adapter, right-click, and go to "Properties."
|
|
||||||
- Under the "Power Management" tab, uncheck the option that allows the device to wake the computer.
|
|
||||||
|
|
||||||
16. **Review Installed Applications:**
|
|
||||||
- Manually review installed applications by searching for "Add or remove programs" in the Start menu.
|
|
||||||
- Check settings/preferences of individual applications for power-related options.
|
|
||||||
- Uninstall unnecessary or problematic software.
|
|
||||||
|
|
||||||
By following these detailed instructions, you should be able to thoroughly diagnose and address battery drain issues on your Windows laptop. Adjust settings as needed to optimize power management and improve battery life.
|
|
||||||
|
|
||||||
### Troubleshoot errors during Microwin usage
|
|
||||||
|
|
||||||
#### Error `0x80041031`
|
|
||||||
|
|
||||||
This error code typically indicates an issue related to Windows Management Instrumentation (WMI). Here are a few steps you can try to resolve the issue:
|
|
||||||
|
|
||||||
1. **Reboot Your Computer:**
|
|
||||||
Sometimes, a simple reboot can resolve temporary issues. Restart your computer and try mounting the ISO again.
|
|
||||||
|
|
||||||
2. **Check for System Corruption:**
|
|
||||||
Run the System File Checker (SFC) utility to scan and repair system files that may be corrupted.
|
|
||||||
```powershell
|
|
||||||
sfc /scannow
|
|
||||||
```
|
|
||||||
|
|
||||||
3. **Update Your System:**
|
|
||||||
Make sure your operating system is up-to-date. Check for Windows updates and install any pending updates.
|
|
||||||
|
|
||||||
4. **Check WMI Service:**
|
|
||||||
Ensure that the Windows Management Instrumentation (WMI) service is running. You can do this through the Services application:
|
|
||||||
- Press `Win + R` to open the Run dialog.
|
|
||||||
- Type `services.msc` and press Enter.
|
|
||||||
- Locate "Windows Management Instrumentation" in the list.
|
|
||||||
- Make sure to set its status to "Running" and the startup type to "Automatic."
|
|
||||||
|
|
||||||
5. **Check for Security Software Interference:**
|
|
||||||
Security software can sometimes interfere with WMI operations. Temporarily disable your antivirus or security software and check if the issue persists.
|
|
||||||
|
|
||||||
6. **Event Viewer:**
|
|
||||||
Check the Event Viewer for more detailed error information. Look for entries related to the `80041031` error and check if there are any additional details that can help identify the cause.
|
|
||||||
|
|
||||||
- Press `Win + X` and select "Event Viewer."
|
|
||||||
- Navigate to "Windows Logs" -> "Application" or "System."
|
|
||||||
- Look for entries with the source related to WMI or the application use to mount the ISO.
|
|
||||||
|
|
||||||
7. **ISO File Integrity:**
|
|
||||||
Ensure that the ISO file you are trying to mount is uncorrupted. Try mounting a different ISO file to see if the issue persists.
|
|
||||||
|
|
||||||
If the problem persists after trying these steps, additional troubleshooting is required. Consider seeking assistance from Microsoft support or community forums for more specific guidance based on your system configuration and the software you use to mount the ISO.
|
|
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 102 KiB |
Before Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 303 KiB |
Before Width: | Height: | Size: 132 KiB |
Before Width: | Height: | Size: 101 KiB |
Before Width: | Height: | Size: 9.6 KiB |
@ -1,57 +0,0 @@
|
|||||||
# How to Contribute?
|
|
||||||
|
|
||||||
## Issues
|
|
||||||
|
|
||||||
* If you encounter any challenges or problems with the script, I kindly request that you submit them via the "Issues" tab on the GitHub repository. By filling out the provided template, you can provide specific details about the issue, allowing me (and others in the community) to promptly address any bugs, or consider feature requests.
|
|
||||||
|
|
||||||
## Contribute Code
|
|
||||||
|
|
||||||
* Pull Requests are now handled directly on the **MAIN branch**. This was done since we can now select specific releases to launch via releases in GitHub.
|
|
||||||
|
|
||||||
* If you're doing code changes, then you can submit a PR to `main` branch, but I am very selective about these.
|
|
||||||
|
|
||||||
> [!WARNING]
|
|
||||||
> Do not use a code formatter, massive amounts of line changes, and make multiple feature changes.
|
|
||||||
> EACH FEATURE CHANGE SHOULD BE IT'S OWN Pull Request!
|
|
||||||
|
|
||||||
* When creating pull requests, it is essential to thoroughly document all changes made. This includes, but not limited to, documenting any additions made to the `tweaks` section and corresponding `undo tweak`, so users are able to remove the newly added tweaks if necessary, and comprehensive documentation is required for all code changes, document your changes and briefly explain why you made your changes in your Pull Request Description. Failure to adhere to this format may result in denial of the pull request. Additionally, Any code lacking sufficient documentation may also be denied.
|
|
||||||
|
|
||||||
* By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented.
|
|
||||||
|
|
||||||
> [!NOTE]
|
|
||||||
> When creating a function, please include "WPF" or "WinUtil" in the file name so it can be loaded into the runspace.
|
|
||||||
|
|
||||||
## Walk through
|
|
||||||
|
|
||||||
### Fork the Repo
|
|
||||||
* Fork the WinUtil Repository [here](https://github.com/ChrisTitusTech/winutil) to create a copy that will be available in your Repository-list.
|
|
||||||

|
|
||||||
|
|
||||||
### Clone the Fork
|
|
||||||
* While you can make your changes directly through the Web, we recommend cloning the repo to your device to test your fork easily.
|
|
||||||
* Using the application GitHub Desktop (available in WinUtil) you can easily manage your repos locally. You can do it using other tools like git-cli (available in WinUtil), we recommend GitHub Desktop for ease of use.
|
|
||||||
* Install GitHub Desktop if not already installed
|
|
||||||
* Log in using the same GitHub account u used to fork WinUtil
|
|
||||||
* Choose the fork under "Your Repositories" and press "clone {repo name}"
|
|
||||||
* Create a new Branch and name it something relatable to your changes,
|
|
||||||
|
|
||||||
* Now you can modify WinUtil to your liking using your prefered text editor.
|
|
||||||
|
|
||||||
|
|
||||||
### Testing your changes
|
|
||||||
* To test to see if your changes work as intended run following commands in a powershell teminal:
|
|
||||||
|
|
||||||
* Change the directory where you are running the commands to the forked project.
|
|
||||||
* `cd {path to the folder with the compile.ps1}`
|
|
||||||
* Run following command to compile and run Winutil
|
|
||||||
* `.\Compile.ps1 -run`
|
|
||||||
* After seeing that your changes work properly feel free to commit the changes to the repository and make a PR, for help on that follow the documentation below.
|
|
||||||
|
|
||||||
### Commiting the changes
|
|
||||||
* Commit your changes once you are fine with the result
|
|
||||||
* Push the changes to "upload" them to your fork on github.com.
|
|
||||||
|
|
||||||
### Making a PR
|
|
||||||
* To make a PR on your repo under a new branch linking to the main branch a button will show and say Preview and Create pull request. Click that button and fill in all information that is provided on the template. Once all the information is filled in correctly check your PR to make sure there is not a WinUtil.ps1 file attached to the PR. Once everything is good make the PR and wait for Chris (The Maintainer) to accept or deny your PR. Once it is accepted in by Chris you will be able to see your changes in the /windev build.
|
|
||||||
* If you do not see your feature in the main /win build that is fine. As all new changes go into the /windev build to make sure everything is working ok before going fully public.
|
|
||||||
* Congrats you just submitted your first PR. Thank you so much for contributing to WinUtil.
|
|
@ -1,4 +0,0 @@
|
|||||||
# FAQ's
|
|
||||||
|
|
||||||
## How do I uninstall WinUtil?
|
|
||||||
* You do not have to uninstall WinUtil. As it is a script you run from Powershell it only loads into your RAM. This means as soon as you close WinUtil it will be deleted off your system.
|
|
@ -1,12 +0,0 @@
|
|||||||
# Welcome to Chris Titus WinUtil Official Documentation!
|
|
||||||
|
|
||||||
[](https://discord.gg/RUbZUZyByQ)
|
|
||||||
|
|
||||||
## Running
|
|
||||||
|
|
||||||
There are 4 ways to run WinUtil. The 4 ways goes as follows:
|
|
||||||
|
|
||||||
* `irm christitus.com/win | iex` - Runs WinUtil from ChrisTitus's website using the latest Full Releases.
|
|
||||||
* `irm https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1 | iex` - Runs WinUtil from github using the latest Full Release.
|
|
||||||
* `irm christitus.com/windev | iex` - Runs WinUtil from ChrisTitus website using the latest Pre-Release.
|
|
||||||
* `irm https://github.com/ChrisTitusTech/winutil/releases/latest/download/windev.ps1 | iex` - Runs WinUtil from github using the latest Pre-Release.
|
|
@ -1,3 +0,0 @@
|
|||||||
# Update Log
|
|
||||||
|
|
||||||
#
|
|
@ -1,159 +0,0 @@
|
|||||||
# User Guide
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
* short one
|
|
||||||
|
|
||||||
|
|
||||||
## Walkthrough
|
|
||||||
|
|
||||||
### Program
|
|
||||||
|
|
||||||
#### Installation & Updates
|
|
||||||
* To install programs select the programs you wish to install or update like the picture below.
|
|
||||||

|
|
||||||
* Once you have selected the programs you wish to install click the select Install/Upgrade Selected button as seen below.
|
|
||||||

|
|
||||||
|
|
||||||
#### Upgrade All
|
|
||||||
* Press the button to upgrade all installed programs that are supported by WinGet, there is no selection needed.
|
|
||||||
|
|
||||||
#### Uninstall
|
|
||||||
* To uninstall programs select the programs you wish to uninstall like the picture below.
|
|
||||||

|
|
||||||
* Once you have selected the programs you wish to uninstall click the select Uninstall Selected button as seen below.
|
|
||||||

|
|
||||||
|
|
||||||
#### Get Installed
|
|
||||||
* Checks for installed programs that are supported by WinGet and selects them in the Utility.
|
|
||||||
|
|
||||||
#### Clear Selection
|
|
||||||
* Clears ur current selection so no program is checked.
|
|
||||||
|
|
||||||
### Tweaks
|
|
||||||
|
|
||||||
#### Tweaks Addition
|
|
||||||
* To enable tweaks on your system select Tweaks at the top next to Install.
|
|
||||||
* Then you can select what tweaks you want adding to your system. We do have some presets you can select from at the top you can see this in the picture below.
|
|
||||||

|
|
||||||
* After you have chosen your tweaks click the Run Tweaks button at the bottom of the screen.
|
|
||||||
|
|
||||||
#### Tweaks Removal
|
|
||||||
* To disable tweaks on your system select Tweaks at the top next to Install.
|
|
||||||
* Then you can select what tweaks you want removing from your system.
|
|
||||||
* After you have chosen your tweaks you want to remove click the Undo Selected Tweaks button at the bottom of the screen.
|
|
||||||
|
|
||||||
#### Essential Tweaks
|
|
||||||
* The Tweaks under the Essential
|
|
||||||
|
|
||||||
#### Advanced Tweaks - CAUTION
|
|
||||||
|
|
||||||
#### O&O Shutup
|
|
||||||
|
|
||||||
#### DNS
|
|
||||||
|
|
||||||
#### Customize Preferences
|
|
||||||
|
|
||||||
#### Performance Plans
|
|
||||||
|
|
||||||
#### Shortcuts
|
|
||||||
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
### Config
|
|
||||||
|
|
||||||
#### Features
|
|
||||||
* Install the most used Windows Features by checking the checkbox and clicking "Install Features" to install them
|
|
||||||
|
|
||||||
#### Fixes
|
|
||||||
* Quick Fixes for your system if you are having Issues.
|
|
||||||
|
|
||||||
* Set Up Autologin
|
|
||||||
* Reset Windows Update
|
|
||||||
* Reset Network
|
|
||||||
* System Corruption Scan
|
|
||||||
* WinGet Reinstall
|
|
||||||
* Remove Adobe Creative Cloud
|
|
||||||
|
|
||||||
#### Legacy Windows Panels
|
|
||||||
|
|
||||||
### Updates | Not working rn
|
|
||||||
|
|
||||||
### MicroWin
|
|
||||||
|
|
||||||
**MicroWin** lets you customize your Windows 10 and 11 installation images by debloating them however you want.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
#### Basic usage
|
|
||||||
|
|
||||||
1. Specify the source Windows ISO to customize
|
|
||||||
|
|
||||||
* If you don't have a Windows ISO file prepared, you can download it using the Media Creation Tool for the respective Windows version. [Here](https://go.microsoft.com/fwlink/?linkid=2156295) is the Windows 11 version, and [here](https://go.microsoft.com/fwlink/?LinkId=2265055) is the Windows 10 version
|
|
||||||
|
|
||||||
2. Configure the debloat process
|
|
||||||
3. Specify the target location for the new ISO file
|
|
||||||
4. Let the magic happen!
|
|
||||||
|
|
||||||
**NOTE:** this feature is still in development and you may encounter some issues with the generated images. If that happens, don't hesitate to report an issue!
|
|
||||||
|
|
||||||
#### Options
|
|
||||||
|
|
||||||
* **Download oscdimg.exe from CTT GitHub repo** will grab a OSCDIMG executable from the GitHub repository instead of a Chocolatey package
|
|
||||||
|
|
||||||
OSCDIMG is the tool that lets the program create ISO images. Typically, you would find this in the [Windows Assessment and Deployment Kit](https://learn.microsoft.com/en-us/windows-hardware/get-started/adk-install)
|
|
||||||
|
|
||||||
* Selecting a scratch directory will copy the contents of the ISO file to the directory you specify instead of an automatically generated folder on the `%TEMP%` directory
|
|
||||||
* You can select an edition of Windows to debloat (**SKU**) using the convenient drop-down menu
|
|
||||||
|
|
||||||
By default, MicroWin will debloat the Pro edition, but you can choose any edition you want
|
|
||||||
|
|
||||||
|
|
||||||
##### Customization options
|
|
||||||
|
|
||||||
* **Keep Provisioned Packages**: leaving this option unticked (default) will try to remove every operating system package
|
|
||||||
|
|
||||||
Some packages may remain after processing. This can happen if the packages in question were permanent ones or had been superseded by newer versions
|
|
||||||
|
|
||||||
* **Keep Appx Packages**: leaving this option unticked (default) will try to remove every Microsoft Store app from the Windows image
|
|
||||||
|
|
||||||
This option will exclude some applications that are essential in the case that you want or need to add a Store app later on
|
|
||||||
|
|
||||||
* **Keep Defender**: leaving this option unticked will try to remove every part of Windows Defender, including the Windows Security app
|
|
||||||
|
|
||||||
Leaving this option unticked is **NOT recommended** unless you plan to use a third-party antivirus solution on your MicroWin installation. On that regard, don't install AVs with bad reputation or rogueware
|
|
||||||
|
|
||||||
* **Keep Edge**: leaving this option unticked will try to remove every part of the Microsoft Edge browser using the best methods available
|
|
||||||
|
|
||||||
Leaving this option unticked is not recommended because it might break some applications that might depend on the `Edge WebView2` runtime. However, if that happens, you can easily [reinstall it](https://developer.microsoft.com/en-us/microsoft-edge/webview2)
|
|
||||||
|
|
||||||
|
|
||||||
##### Driver integration options
|
|
||||||
|
|
||||||
* **Inject drivers** will add the drivers in the folder that you specify to the target Windows image
|
|
||||||
* **Import drivers from current system** will add every third-party driver that is present in your active installation
|
|
||||||
|
|
||||||
This makes the target image have the same hardware compatibility of the active installation. However, this means that you will only be able to install the target Windows image and take full advantage of it on computers with **the same hardware**. To avoid this, you'll need to customize the `install.wim` file of the target ISO in the `sources` folder
|
|
||||||
|
|
||||||
|
|
||||||
##### Ventoy options
|
|
||||||
|
|
||||||
* **Copy to Ventoy** will copy the target ISO file to any USB drive with [Ventoy](https://ventoy.net/en/index.html) installed
|
|
||||||
|
|
||||||
Ventoy is a solution that lets you boot to any ISO file stored in a drive. Think of it as having multiple bootable USBs in one. Do note though that your drive needs to have enough free space for the target ISO file
|
|
||||||
|
|
||||||
|
|
||||||
## Automation
|
|
||||||
|
|
||||||
* Some features are available through automation. This allows you to save your config file pass it to Winutil walk away and come back to a finished system. Here is how you can set it up currently with Winutil >24.01.15
|
|
||||||
|
|
||||||
* On the Install Tab, click "Get Installed", this will get all installed apps **supported by Winutil** on the system
|
|
||||||

|
|
||||||
* Click on the Settings cog in the upper right corner and chose Export, chose file file and location, this will export the setting file.
|
|
||||||

|
|
||||||
* Copy this file to a USB or somewhere you can use after Windows installation.
|
|
||||||
* Use Microwin tab to create a custom Windows image.
|
|
||||||
* Install the Windows image.
|
|
||||||
* In the new Windows, Open PowerShell in the admin mode and run command to automatically apply tweaks and install apps from the config file.
|
|
||||||
* ``` iex "& { $(irm christitus.com/win) } -Config [path-to-your-config] -Run" ```
|
|
||||||
* Have a cup of coffee! Come back when it's done.
|
|
@ -2,92 +2,26 @@ function ConvertTo-Icon {
|
|||||||
<#
|
<#
|
||||||
|
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This function will convert BMP, GIF, EXIF, JPG, PNG and TIFF to ICO file
|
This function will convert PNG to ICO file
|
||||||
|
|
||||||
.PARAMETER bitmapPath
|
|
||||||
The file path to bitmap image to make '.ico' file out of.
|
|
||||||
Supported file types according to Microsoft Documentation is the following:
|
|
||||||
BMP, GIF, EXIF, JPG, PNG and TIFF.
|
|
||||||
|
|
||||||
.PARAMETER iconPath
|
|
||||||
The file path to write the new '.ico' resource.
|
|
||||||
|
|
||||||
.PARAMETER overrideIconFile
|
|
||||||
An optional boolean Parameter that makes the function overrides
|
|
||||||
the Icon File Path if the file exists. Defaults to $true.
|
|
||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
try {
|
ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath $iconPath
|
||||||
ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath "$env:TEMP\cttlogo.ico"
|
|
||||||
} catch [System.IO.FileNotFoundException] {
|
|
||||||
# Handle the thrown exception here...
|
|
||||||
}
|
|
||||||
|
|
||||||
This Example makes a '.ico' file at "$env:TEMP\cttlogo.ico" File Path using the bitmap file
|
|
||||||
found in "$env:TEMP\cttlogo.png", the function overrides the '.ico' File if it's found.
|
|
||||||
this function will throw a FileNotFound Exception at the event of not finding the provided bitmap File Path.
|
|
||||||
|
|
||||||
.EXAMPLE
|
|
||||||
try {
|
|
||||||
ConvertTo-Icon "$env:TEMP\cttlogo.png" "$env:TEMP\cttlogo.ico"
|
|
||||||
} catch [System.IO.FileNotFoundException] {
|
|
||||||
# Handle the thrown exception here...
|
|
||||||
}
|
|
||||||
|
|
||||||
This Example is the same as Example 1, but uses Positional Parameters instead.
|
|
||||||
|
|
||||||
.EXAMPLE
|
|
||||||
if (Test-Path "$env:TEMP\cttlogo.png") {
|
|
||||||
ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath "$env:TEMP\cttlogo.ico"
|
|
||||||
}
|
|
||||||
|
|
||||||
This Example is same as Example 1, but checks if the bitmap File exists before calling 'ConvertTo-Icon' Function.
|
|
||||||
This's the recommended way of using this function, as it doesn't require any try-catch blocks.
|
|
||||||
|
|
||||||
.EXAMPLE
|
|
||||||
try {
|
|
||||||
ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath "$env:TEMP\cttlogo.ico" -overrideIconFile $false
|
|
||||||
} catch [System.IO.FileNotFoundException] {
|
|
||||||
# Handle the thrown exception here...
|
|
||||||
}
|
|
||||||
|
|
||||||
This Example make use of '-overrideIconFile' Optional Parameter, the default for this paramter is $true.
|
|
||||||
By doing '-overrideIconFile $false', the 'ConvertTo-Icon' function will raise an exception that needs to be catched throw a 'catch' Code Block,
|
|
||||||
otherwise it'll crash the running PowerShell instance/process.
|
|
||||||
|
|
||||||
#>
|
#>
|
||||||
param(
|
param( [Parameter(Mandatory=$true)]
|
||||||
[Parameter(Mandatory=$true, position=0)]
|
$bitmapPath,
|
||||||
[string]$bitmapPath,
|
$iconPath = "$env:temp\newicon.ico"
|
||||||
[Parameter(Mandatory=$true, position=1)]
|
|
||||||
[string]$iconPath,
|
|
||||||
[Parameter(position=2)]
|
|
||||||
[bool]$overrideIconFile = $true
|
|
||||||
)
|
)
|
||||||
|
|
||||||
Add-Type -AssemblyName System.Drawing
|
Add-Type -AssemblyName System.Drawing
|
||||||
|
|
||||||
if (Test-Path $bitmapPath) {
|
if (Test-Path $bitmapPath) {
|
||||||
if ((Test-Path $iconPath) -AND ($overrideIconFile -eq $false)) {
|
|
||||||
Write-Host "[ConvertTo-Icon] Icon File is found at '$iconPath', and the 'overrideIconFile' Parameter is set to '$overrideIconFile'. Skipping the bitmap to icon convertion..." -ForegroundColor Yellow
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
# Load bitmap file into memory, and make an Icon version out of it
|
|
||||||
$b = [System.Drawing.Bitmap]::FromFile($bitmapPath)
|
$b = [System.Drawing.Bitmap]::FromFile($bitmapPath)
|
||||||
$icon = [System.Drawing.Icon]::FromHandle($b.GetHicon())
|
$icon = [System.Drawing.Icon]::FromHandle($b.GetHicon())
|
||||||
|
|
||||||
# Create the folder for the new icon file if it doesn't exists
|
|
||||||
$iconFolder = (New-Object System.IO.FileInfo($iconPath)).Directory.FullName
|
|
||||||
[System.IO.Directory]::CreateDirectory($iconFolder) | Out-Null
|
|
||||||
|
|
||||||
# Write the Icon File and do some cleaning-up
|
|
||||||
$file = New-Object System.IO.FileStream($iconPath, 'OpenOrCreate')
|
$file = New-Object System.IO.FileStream($iconPath, 'OpenOrCreate')
|
||||||
$icon.Save($file)
|
$icon.Save($file)
|
||||||
$file.Close()
|
$file.Close()
|
||||||
$icon.Dispose()
|
$icon.Dispose()
|
||||||
|
#explorer "/SELECT,$iconpath"
|
||||||
}
|
}
|
||||||
else {
|
else { Write-Warning "$BitmapPath does not exist" }
|
||||||
throw [System.IO.FileNotFoundException] "[ConvertTo-Icon] The provided bitmap File Path is not found at '$bitmapPath'."
|
|
||||||
}
|
|
||||||
}
|
}
|
@ -30,5 +30,58 @@ function Get-LocalizedYesNo {
|
|||||||
Write-Debug "According to takeown.exe local Yes is $charactersArray[0]"
|
Write-Debug "According to takeown.exe local Yes is $charactersArray[0]"
|
||||||
# Return the array of characters
|
# Return the array of characters
|
||||||
return $charactersArray
|
return $charactersArray
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function Get-LocalizedYesNoTakeown {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
This function runs takeown.exe and captures its output to extract yes no in a localized Windows
|
||||||
|
|
||||||
|
.DESCRIPTION
|
||||||
|
The function retrieves lines from the output of takeown.exe until there are at least 2 characters
|
||||||
|
captured in a specific format, such as "Yes=<first character>, No=<second character>".
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
$yesNoArray = Get-LocalizedYesNo
|
||||||
|
Write-Host "Yes=$($yesNoArray[0]), No=$($yesNoArray[1])"
|
||||||
|
#>
|
||||||
|
|
||||||
|
# Run takeown.exe and capture its output
|
||||||
|
$takeownOutput = & takeown.exe /? | Out-String
|
||||||
|
|
||||||
|
# Parse the output and retrieve lines until there are at least 2 characters in the array
|
||||||
|
$found = $false
|
||||||
|
$charactersArray = @()
|
||||||
|
foreach ($line in $takeownOutput -split "`r`n")
|
||||||
|
{
|
||||||
|
# skip everything before /D flag help
|
||||||
|
if ($found)
|
||||||
|
{
|
||||||
|
# now that /D is found start looking for a single character in double quotes
|
||||||
|
# in help text there is another string in double quotes but it is not a single character
|
||||||
|
$regexPattern = '"([a-zA-Z])"'
|
||||||
|
|
||||||
|
$charactersArray = [regex]::Matches($line, $regexPattern) | ForEach-Object { $_.Groups[1].Value }
|
||||||
|
|
||||||
|
# if ($charactersArray.Count -gt 0) {
|
||||||
|
# Write-Output "Extracted symbols: $($matches -join ', ')"
|
||||||
|
# } else {
|
||||||
|
# Write-Output "No matches found."
|
||||||
|
# }
|
||||||
|
|
||||||
|
if ($charactersArray.Count -ge 2)
|
||||||
|
{
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
elseif ($line -match "/D ")
|
||||||
|
{
|
||||||
|
$found = $true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Debug "According to takeown.exe local Yes is $charactersArray[0]"
|
||||||
|
# Return the array of characters
|
||||||
|
return $charactersArray
|
||||||
}
|
}
|
@ -6,10 +6,8 @@ function Get-TabXaml {
|
|||||||
It takes the tabname and the number of columns to display the applications in as input and returns the XAML for the tab as output
|
It takes the tabname and the number of columns to display the applications in as input and returns the XAML for the tab as output
|
||||||
.PARAMETER tabname
|
.PARAMETER tabname
|
||||||
The name of the tab to generate XAML for
|
The name of the tab to generate XAML for
|
||||||
Note: the 'tabname' parameter must equal one of the json files found in $sync.configs variable
|
|
||||||
Otherwise, it'll throw an exception
|
|
||||||
.PARAMETER columncount
|
.PARAMETER columncount
|
||||||
The number of columns to display the applications in, default is 0
|
The number of columns to display the applications in
|
||||||
.OUTPUTS
|
.OUTPUTS
|
||||||
The XAML for the tab
|
The XAML for the tab
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
@ -17,20 +15,10 @@ function Get-TabXaml {
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
|
|
||||||
param(
|
param( [Parameter(Mandatory=$true)]
|
||||||
[Parameter(Mandatory, position=0)]
|
$tabname,
|
||||||
[string]$tabname,
|
$columncount = 0
|
||||||
|
|
||||||
[Parameter(position=1)]
|
|
||||||
[ValidateRange(0,10)] # 10 panels as max number is more then enough
|
|
||||||
[int]$columncount = 0
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Validate tabname
|
|
||||||
if ($sync.configs.$tabname -eq $null) {
|
|
||||||
throw "Invalid parameter passed, can't find '$tabname' in '`$sync.configs' variable, please double check any calls to 'Get-TabXaml' function."
|
|
||||||
}
|
|
||||||
|
|
||||||
$organizedData = @{}
|
$organizedData = @{}
|
||||||
# Iterate through JSON data and organize by panel and category
|
# Iterate through JSON data and organize by panel and category
|
||||||
foreach ($appName in $sync.configs.$tabname.PSObject.Properties.Name) {
|
foreach ($appName in $sync.configs.$tabname.PSObject.Properties.Name) {
|
||||||
@ -51,7 +39,6 @@ function Get-TabXaml {
|
|||||||
ComboItems = $appInfo.ComboItems
|
ComboItems = $appInfo.ComboItems
|
||||||
# Checked is the property to set startup checked status of checkbox (Default is false)
|
# Checked is the property to set startup checked status of checkbox (Default is false)
|
||||||
Checked = $appInfo.Checked
|
Checked = $appInfo.Checked
|
||||||
ButtonWidth = $appInfo.ButtonWidth
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (-not $organizedData.ContainsKey($appObject.panel)) {
|
if (-not $organizedData.ContainsKey($appObject.panel)) {
|
||||||
@ -66,22 +53,7 @@ function Get-TabXaml {
|
|||||||
# Add Order property to keep the original order of tweaks and features
|
# Add Order property to keep the original order of tweaks and features
|
||||||
$organizedData[$appObject.panel][$appInfo.Category]["$($appInfo.order)$appName"] = $appObject
|
$organizedData[$appObject.panel][$appInfo.Category]["$($appInfo.order)$appName"] = $appObject
|
||||||
}
|
}
|
||||||
|
$panelcount=0
|
||||||
# Same tab amount in last line of 'inputXML.xaml' file
|
|
||||||
# TODO: Get the base repeat (amount) of tabs from last line (or even lines)
|
|
||||||
# so it can dynamicly react to whatever is before this generated XML string.
|
|
||||||
# .. may be solve this even before calling this function, and pass the result as a parameter?
|
|
||||||
$tab_repeat = 7
|
|
||||||
$spaces_per_tab = 4 # The convenction used across the code base
|
|
||||||
$tab_as_spaces = $(" " * $spaces_per_tab)
|
|
||||||
$precal_indent = $($tab_as_spaces * $tab_repeat)
|
|
||||||
$precal_indent_p1 = $($tab_as_spaces * ($tab_repeat + 1))
|
|
||||||
$precal_indent_p2 = $($tab_as_spaces * ($tab_repeat + 2))
|
|
||||||
$precal_indent_m1 = $($tab_as_spaces * ($tab_repeat - 1))
|
|
||||||
$precal_indent_m2 = $($tab_as_spaces * ($tab_repeat - 2))
|
|
||||||
|
|
||||||
# Calculate the needed number of panels
|
|
||||||
$panelcount = 0
|
|
||||||
$paneltotal = $organizedData.Keys.Count
|
$paneltotal = $organizedData.Keys.Count
|
||||||
if ($columncount -gt 0) {
|
if ($columncount -gt 0) {
|
||||||
$appcount = $sync.configs.$tabname.PSObject.Properties.Name.count + $organizedData["0"].Keys.count
|
$appcount = $sync.configs.$tabname.PSObject.Properties.Name.count + $organizedData["0"].Keys.count
|
||||||
@ -89,129 +61,66 @@ function Get-TabXaml {
|
|||||||
$paneltotal = $columncount
|
$paneltotal = $columncount
|
||||||
}
|
}
|
||||||
# add ColumnDefinitions to evenly draw colums
|
# add ColumnDefinitions to evenly draw colums
|
||||||
$blockXml = "<Grid.ColumnDefinitions>"
|
$blockXml="<Grid.ColumnDefinitions>`n"+("<ColumnDefinition Width=""*""/>`n"*($paneltotal))+"</Grid.ColumnDefinitions>`n"
|
||||||
$blockXml += $("`r`n" + " " * ($spaces_per_tab * $tab_repeat) +
|
# Iterate through organizedData by panel, category, and application
|
||||||
"<ColumnDefinition Width=""*""/>") * $paneltotal
|
|
||||||
$blockXml += $("`r`n" + " " * ($spaces_per_tab * ($tab_repeat - 1))) +
|
|
||||||
"</Grid.ColumnDefinitions>" + "`r`n"
|
|
||||||
|
|
||||||
# Iterate through 'organizedData' by panel, category, and application
|
|
||||||
$count = 0
|
$count = 0
|
||||||
foreach ($panel in ($organizedData.Keys | Sort-Object)) {
|
foreach ($panel in ($organizedData.Keys | Sort-Object)) {
|
||||||
$blockXml += $precal_indent_m1 + "<Border Grid.Row=""1"" Grid.Column=""$panelcount"">" + "`r`n"
|
$blockXml += "<Border Grid.Row=""1"" Grid.Column=""$panelcount"">`n<StackPanel Background=""{MainBackgroundColor}"" SnapsToDevicePixels=""True"">`n"
|
||||||
$blockXml += $precal_indent + "<StackPanel Background=""{MainBackgroundColor}"" SnapsToDevicePixels=""True"">" + "`r`n"
|
|
||||||
$panelcount++
|
$panelcount++
|
||||||
foreach ($category in ($organizedData[$panel].Keys | Sort-Object)) {
|
foreach ($category in ($organizedData[$panel].Keys | Sort-Object)) {
|
||||||
$count++
|
$count++
|
||||||
if ($columncount -gt 0) {
|
if ($columncount -gt 0) {
|
||||||
$panelcount2 = [Int](($count)/$maxcount-0.5)
|
$panelcount2 = [Int](($count)/$maxcount-0.5)
|
||||||
if ($panelcount -eq $panelcount2 ) {
|
if ($panelcount -eq $panelcount2 ) {
|
||||||
$blockXml += $precal_indent_p2 + "</StackPanel>" + "`r`n"
|
$blockXml +="`n</StackPanel>`n</Border>`n"
|
||||||
$blockXml += $precal_indent_p1 + "</Border>" + "`r`n"
|
$blockXml += "<Border Grid.Row=""1"" Grid.Column=""$panelcount"">`n<StackPanel Background=""{MainBackgroundColor}"" SnapsToDevicePixels=""True"">`n"
|
||||||
$blockXml += $precal_indent_p1 + "<Border Grid.Row=""1"" Grid.Column=""$panelcount"">" + "`r`n"
|
|
||||||
$blockXml += $precal_indent_p2 + "<StackPanel Background=""{MainBackgroundColor}"" SnapsToDevicePixels=""True"">" + "`r`n"
|
|
||||||
$panelcount++
|
$panelcount++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$blockXml += "<Label Content=""$($category -replace '^.__', '')"" FontSize=""16""/>`n"
|
||||||
# Dot-source the Get-WPFObjectName function
|
|
||||||
. .\functions\private\Get-WPFObjectName
|
|
||||||
|
|
||||||
$categorycontent = $($category -replace '^.__', '')
|
|
||||||
$categoryname = Get-WPFObjectName -type "Label" -name $categorycontent
|
|
||||||
$blockXml += $("`r`n" + " " * ($spaces_per_tab * $tab_repeat)) +
|
|
||||||
"<Label Name=""$categoryname"" Content=""$categorycontent""" + " " +
|
|
||||||
"FontSize=""{FontSizeHeading}"" FontFamily=""{HeaderFontFamily}""/>" + "`r`n" + "`r`n"
|
|
||||||
$sortedApps = $organizedData[$panel][$category].Keys | Sort-Object
|
$sortedApps = $organizedData[$panel][$category].Keys | Sort-Object
|
||||||
foreach ($appName in $sortedApps) {
|
foreach ($appName in $sortedApps) {
|
||||||
$count++
|
$count++
|
||||||
|
|
||||||
if ($columncount -gt 0) {
|
if ($columncount -gt 0) {
|
||||||
$panelcount2 = [Int](($count)/$maxcount-0.5)
|
$panelcount2 = [Int](($count)/$maxcount-0.5)
|
||||||
# Verify the indentation actually works...
|
|
||||||
if ($panelcount -eq $panelcount2 ) {
|
if ($panelcount -eq $panelcount2 ) {
|
||||||
$blockXml += $precal_indent_m1 +
|
$blockXml +="`n</StackPanel>`n</Border>`n"
|
||||||
"</StackPanel>" + "`r`n"
|
$blockXml += "<Border Grid.Row=""1"" Grid.Column=""$panelcount"">`n<StackPanel Background=""{MainBackgroundColor}"" SnapsToDevicePixels=""True"">`n"
|
||||||
$blockXml += $precal_indent_m2 +
|
|
||||||
"</Border>" + "`r`n"
|
|
||||||
$blockXml += $precal_indent_m2 +
|
|
||||||
"<Border Grid.Row=""1"" Grid.Column=""$panelcount"">" + "`r`n"
|
|
||||||
$blockXml += $precal_indent_m1 +
|
|
||||||
"<StackPanel Background=""{MainBackgroundColor}"" SnapsToDevicePixels=""True"">" + "`r`n"
|
|
||||||
$panelcount++
|
$panelcount++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$appInfo = $organizedData[$panel][$category][$appName]
|
$appInfo = $organizedData[$panel][$category][$appName]
|
||||||
switch ($appInfo.Type) {
|
if ("Toggle" -eq $appInfo.Type) {
|
||||||
"Toggle" {
|
$blockXml += "<StackPanel Orientation=`"Horizontal`" Margin=`"0,10,0,0`">`n"
|
||||||
$blockXml += $precal_indent_m1 +
|
$blockXml += "<CheckBox Name=`"$($appInfo.Name)`" Style=`"{StaticResource ColorfulToggleSwitchStyle}`" Margin=`"2.5,0`"/>`n"
|
||||||
"<DockPanel LastChildFill=""True"">" + "`r`n"
|
$blockXml += "<Label Content=`"$($appInfo.Content)`" Style=`"{StaticResource labelfortweaks}`" ToolTip=`"$($appInfo.Description)`" />`n</StackPanel>`n"
|
||||||
$blockXml += $precal_indent +
|
} elseif ("Combobox" -eq $appInfo.Type) {
|
||||||
"<CheckBox Name=""$($appInfo.Name)"" Style=""{StaticResource ColorfulToggleSwitchStyle}"" Margin=""4,0""" + " " +
|
$blockXml += "<StackPanel Orientation=`"Horizontal`" Margin=`"0,5,0,0`">`n<Label Content=`"$($appInfo.Content)`" HorizontalAlignment=`"Left`" VerticalAlignment=`"Center`"/>`n"
|
||||||
"HorizontalAlignment=""Right"" FontSize=""{FontSize}""/>" + "`r`n"
|
$blockXml += "<ComboBox Name=`"$($appInfo.Name)`" Height=`"32`" Width=`"186`" HorizontalAlignment=`"Left`" VerticalAlignment=`"Center`" Margin=`"5,5`">`n"
|
||||||
$blockXml += $precal_indent +
|
$addfirst="IsSelected=`"True`""
|
||||||
"<Label Content=""$($appInfo.Content)"" ToolTip=""$($appInfo.Description)""" + " " +
|
|
||||||
"HorizontalAlignment=""Left"" FontSize=""{FontSize}""/>" + "`r`n"
|
|
||||||
$blockXml += $precal_indent_m1 +
|
|
||||||
"</DockPanel>" + "`r`n"
|
|
||||||
}
|
|
||||||
|
|
||||||
"Combobox" {
|
|
||||||
$blockXml += $precal_indent_m1 +
|
|
||||||
"<StackPanel Orientation=""Horizontal"" Margin=""0,5,0,0"">" + "`r`n"
|
|
||||||
$blockXml += $precal_indent + "<Label Content=""$($appInfo.Content)"" HorizontalAlignment=""Left""" + " " +
|
|
||||||
"VerticalAlignment=""Center"" FontSize=""{FontSize}""/>" + "`r`n"
|
|
||||||
$blockXml += $precal_indent +
|
|
||||||
"<ComboBox Name=""$($appInfo.Name)"" Height=""32"" Width=""186"" HorizontalAlignment=""Left""" + " " +
|
|
||||||
"VerticalAlignment=""Center"" Margin=""5,5"" FontSize=""{FontSize}"">" + "`r`n"
|
|
||||||
|
|
||||||
$addfirst="IsSelected=""True"""
|
|
||||||
foreach ($comboitem in ($appInfo.ComboItems -split " ")) {
|
foreach ($comboitem in ($appInfo.ComboItems -split " ")) {
|
||||||
$blockXml += $precal_indent_p1 +
|
$blockXml += "<ComboBoxItem $addfirst Content=`"$comboitem`"/>`n"
|
||||||
"<ComboBoxItem $addfirst Content=""$comboitem"" FontSize=""{FontSize}""/>" + "`r`n"
|
|
||||||
$addfirst=""
|
$addfirst=""
|
||||||
}
|
}
|
||||||
|
$blockXml += "</ComboBox>`n</StackPanel>"
|
||||||
$blockXml += $precal_indent_p1 + "</ComboBox>" + "`r`n"
|
# If it is a digit, type is button and button length is digits
|
||||||
$blockXml += $precal_indent + "</StackPanel>" + "`r`n"
|
} elseif ($appInfo.Type -match "^[\d\.]+$") {
|
||||||
}
|
$blockXml += "<Button Name=`"$($appInfo.Name)`" Content=`"$($appInfo.Content)`" HorizontalAlignment = `"Left`" Width=`"$($appInfo.Type)`" Margin=`"5`" Padding=`"20,5`" />`n"
|
||||||
|
|
||||||
"Button" {
|
|
||||||
if ($appInfo.ButtonWidth -ne $null) {
|
|
||||||
$ButtonWidthStr = "Width=""$($appInfo.ButtonWidth)"""
|
|
||||||
}
|
|
||||||
$blockXml += $precal_indent +
|
|
||||||
"<Button Name=""$($appInfo.Name)"" Content=""$($appInfo.Content)""" + " " +
|
|
||||||
"HorizontalAlignment=""Left"" Margin=""5"" Padding=""20,5"" $($ButtonWidthStr)/>" + "`r`n"
|
|
||||||
}
|
|
||||||
|
|
||||||
# else it is a checkbox
|
# else it is a checkbox
|
||||||
default {
|
|
||||||
$checkedStatus = If ($appInfo.Checked -eq $null) {""} Else {" IsChecked=""$($appInfo.Checked)"""}
|
|
||||||
if ($appInfo.Link -eq $null) {
|
|
||||||
$blockXml += $precal_indent +
|
|
||||||
"<CheckBox Name=""$($appInfo.Name)"" Content=""$($appInfo.Content)""$($checkedStatus) Margin=""5,0""" + " " +
|
|
||||||
"ToolTip=""$($appInfo.Description)""/>" + "`r`n"
|
|
||||||
} else {
|
} else {
|
||||||
$blockXml += $precal_indent +
|
$checkedStatus = If ($null -eq $appInfo.Checked) {""} Else {"IsChecked=`"$($appInfo.Checked)`" "}
|
||||||
"<StackPanel Orientation=""Horizontal"">" + "`r`n"
|
if ($null -eq $appInfo.Link)
|
||||||
$blockXml += $precal_indent_p1 +
|
{
|
||||||
"<CheckBox Name=""$($appInfo.Name)"" Content=""$($appInfo.Content)""$($checkedStatus)" + " " +
|
$blockXml += "<CheckBox Name=`"$($appInfo.Name)`" Content=`"$($appInfo.Content)`" $($checkedStatus)Margin=`"5,0`" ToolTip=`"$($appInfo.Description)`"/>`n"
|
||||||
"ToolTip=""$($appInfo.Description)"" Margin=""0,0,2,0""/>" + "`r`n"
|
}
|
||||||
$blockXml += $precal_indent_p1 +
|
else
|
||||||
"<TextBlock Name=""$($appInfo.Name)Link"" Style=""{StaticResource HoverTextBlockStyle}"" Text=""(?)""" + " " +
|
{
|
||||||
"ToolTip=""$($appInfo.Link)""/>" + "`r`n"
|
$blockXml += "<StackPanel Orientation=""Horizontal"">`n<CheckBox Name=""$($appInfo.Name)"" Content=""$($appInfo.Content)"" $($checkedStatus)ToolTip=""$($appInfo.Description)"" Margin=""0,0,2,0""/><TextBlock Name=""$($appInfo.Name)Link"" Style=""{StaticResource HoverTextBlockStyle}"" Text=""(?)"" ToolTip=""$($appInfo.Link)"" />`n</StackPanel>`n"
|
||||||
$blockXml += $precal_indent +
|
|
||||||
"</StackPanel>" + "`r`n"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
$blockXml +="`n</StackPanel>`n</Border>`n"
|
||||||
|
|
||||||
$blockXml += $precal_indent_p1 + "</StackPanel>" + "`r`n"
|
|
||||||
$blockXml += $precal_indent + "</Border>" + "`r`n"
|
|
||||||
}
|
}
|
||||||
return ($blockXml)
|
return ($blockXml)
|
||||||
}
|
}
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
function Get-WPFObjectName {
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
This is a helper function that generates an objectname with the prefix WPF that can be used as a Powershell Variable after compilation.
|
|
||||||
To achieve this, all characters that are not a-z, A-Z or 0-9 are simply removed from the name.
|
|
||||||
.PARAMETER type
|
|
||||||
The type of object for which the name should be generated. (e.g. Label, Button, CheckBox...)
|
|
||||||
.PARAMETER name
|
|
||||||
The name or description to be used for the object. (invalid characters are removed)
|
|
||||||
.OUTPUTS
|
|
||||||
A string that can be used as a object/variable name in powershell.
|
|
||||||
For example: WPFLabelMicrosoftTools
|
|
||||||
|
|
||||||
.EXAMPLE
|
|
||||||
Get-WPFObjectName -type Label -name "Microsoft Tools"
|
|
||||||
#>
|
|
||||||
|
|
||||||
param( [Parameter(Mandatory=$true)]
|
|
||||||
$type,
|
|
||||||
$name
|
|
||||||
)
|
|
||||||
|
|
||||||
$Output = $("WPF"+$type+$name) -replace '[^a-zA-Z0-9]', ''
|
|
||||||
|
|
||||||
return $Output
|
|
||||||
|
|
||||||
}
|
|
@ -46,16 +46,17 @@ Function Get-WinUtilCheckBoxes {
|
|||||||
$group = if ($CheckBox.Key.StartsWith("WPFInstall")) { "Install" }
|
$group = if ($CheckBox.Key.StartsWith("WPFInstall")) { "Install" }
|
||||||
elseif ($CheckBox.Key.StartsWith("WPFTweaks")) { "WPFTweaks" }
|
elseif ($CheckBox.Key.StartsWith("WPFTweaks")) { "WPFTweaks" }
|
||||||
elseif ($CheckBox.Key.StartsWith("WPFFeature")) { "WPFFeature" }
|
elseif ($CheckBox.Key.StartsWith("WPFFeature")) { "WPFFeature" }
|
||||||
|
|
||||||
if ($group) {
|
if ($group) {
|
||||||
if ($CheckBox.Value.IsChecked -eq $true) {
|
if ($CheckBox.Value.IsChecked -eq $true) {
|
||||||
$feature = switch ($group) {
|
$feature = switch ($group) {
|
||||||
"Install" {
|
"Install" {
|
||||||
# Get the winget value
|
$wingetValue = $sync.configs.applications.$($CheckBox.Name).winget
|
||||||
[PsCustomObject]@{
|
if (-not [string]::IsNullOrWhiteSpace($wingetValue) -and $wingetValue -ne "na") {
|
||||||
winget="$($sync.configs.applications.$($CheckBox.Name).winget)";
|
$wingetValue -split ";"
|
||||||
choco="$($sync.configs.applications.$($CheckBox.Name).choco)";
|
} else {
|
||||||
|
$sync.configs.applications.$($CheckBox.Name).choco
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
default {
|
default {
|
||||||
$CheckBox.Name
|
$CheckBox.Name
|
||||||
@ -79,5 +80,6 @@ Function Get-WinUtilCheckBoxes {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $Output
|
return $Output
|
||||||
}
|
}
|
||||||
|
@ -98,15 +98,6 @@ Function Get-WinUtilToggleStatus {
|
|||||||
return $false
|
return $false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if($ToggleSwitch -eq "WPFToggleTaskbarSearch"){
|
|
||||||
$SearchButton = (Get-ItemProperty -path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search").SearchboxTaskbarMode
|
|
||||||
if($SearchButton -eq 0){
|
|
||||||
return $false
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
return $true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($ToggleSwitch -eq "WPFToggleStickyKeys") {
|
if ($ToggleSwitch -eq "WPFToggleStickyKeys") {
|
||||||
$StickyKeys = (Get-ItemProperty -path 'HKCU:\Control Panel\Accessibility\StickyKeys').Flags
|
$StickyKeys = (Get-ItemProperty -path 'HKCU:\Control Panel\Accessibility\StickyKeys').Flags
|
||||||
if($StickyKeys -eq 58){
|
if($StickyKeys -eq 58){
|
||||||
@ -116,26 +107,6 @@ Function Get-WinUtilToggleStatus {
|
|||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($ToggleSwitch -eq "WPFToggleTaskView") {
|
|
||||||
$TaskView = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').ShowTaskViewButton
|
|
||||||
if($TaskView -eq 0){
|
|
||||||
return $false
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
return $true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($ToggleSwitch -eq "WPFToggleHiddenFiles") {
|
|
||||||
$HiddenFiles = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').Hidden
|
|
||||||
if($HiddenFiles -eq 0){
|
|
||||||
return $false
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
return $true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($ToggleSwitch -eq "WPFToggleTaskbarWidgets") {
|
if ($ToggleSwitch -eq "WPFToggleTaskbarWidgets") {
|
||||||
$TaskbarWidgets = (Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced").TaskBarDa
|
$TaskbarWidgets = (Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced").TaskBarDa
|
||||||
if($TaskbarWidgets -eq 0) {
|
if($TaskbarWidgets -eq 0) {
|
||||||
@ -145,13 +116,4 @@ Function Get-WinUtilToggleStatus {
|
|||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($ToggleSwitch -eq "WPFToggleTaskbarAlignment") {
|
|
||||||
$TaskbarAlignment = (Get-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced").TaskbarAl
|
|
||||||
if($TaskbarAlignment -eq 0) {
|
|
||||||
return $false
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
return $true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,9 @@ function Get-WinUtilVariables {
|
|||||||
[Parameter()]
|
[Parameter()]
|
||||||
[string[]]$Type
|
[string[]]$Type
|
||||||
)
|
)
|
||||||
$keys = ($sync.keys).where{ $_ -like "WPF*" }
|
|
||||||
|
$keys = $sync.keys | Where-Object { $_ -like "WPF*" }
|
||||||
|
|
||||||
if ($Type) {
|
if ($Type) {
|
||||||
$output = $keys | ForEach-Object {
|
$output = $keys | ForEach-Object {
|
||||||
Try {
|
Try {
|
||||||
|
@ -5,17 +5,14 @@ function Get-WinUtilWingetLatest {
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This function grabs the latest version of Winget and returns the download path to Install-WinUtilWinget for installation.
|
This function grabs the latest version of Winget and returns the download path to Install-WinUtilWinget for installation.
|
||||||
#>
|
#>
|
||||||
# Invoke-WebRequest is notoriously slow when the byte progress is displayed. The following lines disable the progress bar and reset them at the end of the function
|
|
||||||
$PreviousProgressPreference = $ProgressPreference
|
|
||||||
$ProgressPreference = "silentlyContinue"
|
|
||||||
Try{
|
Try{
|
||||||
# Grabs the latest release of Winget from the Github API for the install process.
|
# Grabs the latest release of Winget from the Github API for the install process.
|
||||||
$response = Invoke-RestMethod -Uri "https://api.github.com/repos/microsoft/Winget-cli/releases/latest" -Method Get -ErrorAction Stop
|
$response = Invoke-RestMethod -Uri "https://api.github.com/repos/microsoft/Winget-cli/releases/latest" -Method Get -ErrorAction Stop
|
||||||
$latestVersion = $response.tag_name #Stores version number of latest release.
|
$latestVersion = $response.tag_name #Stores version number of latest release.
|
||||||
$licenseWingetUrl = $response.assets.browser_download_url | Where-Object {$_ -like "*License1.xml"} #Index value for License file.
|
$licenseWingetUrl = $response.assets.browser_download_url[0] #Index value for License file.
|
||||||
Write-Host "Latest Version:`t$($latestVersion)`n"
|
Write-Host "Latest Version:`t$($latestVersion)`n"
|
||||||
Write-Host "Downloading..."
|
$assetUrl = $response.assets.browser_download_url[2] #Index value for download URL.
|
||||||
$assetUrl = $response.assets.browser_download_url | Where-Object {$_ -like "*Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle"}
|
|
||||||
Invoke-WebRequest -Uri $licenseWingetUrl -OutFile $ENV:TEMP\License1.xml
|
Invoke-WebRequest -Uri $licenseWingetUrl -OutFile $ENV:TEMP\License1.xml
|
||||||
# The only pain is that the msixbundle for winget-cli is 246MB. In some situations this can take a bit, with slower connections.
|
# The only pain is that the msixbundle for winget-cli is 246MB. In some situations this can take a bit, with slower connections.
|
||||||
Invoke-WebRequest -Uri $assetUrl -OutFile $ENV:TEMP\Microsoft.DesktopAppInstaller.msixbundle
|
Invoke-WebRequest -Uri $assetUrl -OutFile $ENV:TEMP\Microsoft.DesktopAppInstaller.msixbundle
|
||||||
@ -23,5 +20,4 @@ function Get-WinUtilWingetLatest {
|
|||||||
Catch{
|
Catch{
|
||||||
throw [WingetFailedInstall]::new('Failed to get latest Winget release and license')
|
throw [WingetFailedInstall]::new('Failed to get latest Winget release and license')
|
||||||
}
|
}
|
||||||
$ProgressPreference = $PreviousProgressPreference
|
|
||||||
}
|
}
|
||||||
|
@ -1,91 +0,0 @@
|
|||||||
function Install-WinUtilProgramChoco {
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Manages the provided programs using Chocolatey
|
|
||||||
|
|
||||||
.PARAMETER ProgramsToInstall
|
|
||||||
A list of programs to manage
|
|
||||||
|
|
||||||
.PARAMETER manage
|
|
||||||
The action to perform on the programs, can be either 'Installing' or 'Uninstalling'
|
|
||||||
|
|
||||||
.NOTES
|
|
||||||
The triple quotes are required any time you need a " in a normal script block.
|
|
||||||
#>
|
|
||||||
|
|
||||||
param(
|
|
||||||
[Parameter(Mandatory, Position=0)]
|
|
||||||
[PsCustomObject]$ProgramsToInstall,
|
|
||||||
|
|
||||||
[Parameter(Position=1)]
|
|
||||||
[String]$manage = "Installing"
|
|
||||||
)
|
|
||||||
|
|
||||||
$x = 0
|
|
||||||
$count = $ProgramsToInstall.Count
|
|
||||||
|
|
||||||
# This check isn't really necessary, as there's a couple of checks before this Private Function gets called, but just to make sure ;)
|
|
||||||
if($count -le 0) {
|
|
||||||
throw "Private Function 'Install-WinUtilProgramChoco' expected Parameter 'ProgramsToInstall' to be of size 1 or greater, instead got $count,`nPlease double check your code and re-compile WinUtil."
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Progress -Activity "$manage Applications" -Status "Starting" -PercentComplete 0
|
|
||||||
Write-Host "==========================================="
|
|
||||||
Write-Host "-- Configuring Chocolatey pacakages ---"
|
|
||||||
Write-Host "==========================================="
|
|
||||||
Foreach ($Program in $ProgramsToInstall){
|
|
||||||
Write-Progress -Activity "$manage Applications" -Status "$manage $($Program.choco) $($x + 1) of $count" -PercentComplete $($x/$count*100)
|
|
||||||
if($manage -eq "Installing"){
|
|
||||||
write-host "Starting install of $($Program.choco) with Chocolatey."
|
|
||||||
try{
|
|
||||||
$tryUpgrade = $false
|
|
||||||
$installOutputFilePath = "$env:TEMP\Install-WinUtilProgramChoco.install-command.output.txt"
|
|
||||||
New-Item -ItemType File -Path $installOutputFilePath
|
|
||||||
$chocoInstallStatus = $(Start-Process -FilePath "choco" -ArgumentList "install $($Program.choco) -y" -Wait -PassThru -RedirectStandardOutput $installOutputFilePath).ExitCode
|
|
||||||
if(($chocoInstallStatus -eq 0) -AND (Test-Path -Path $installOutputFilePath)) {
|
|
||||||
$keywordsFound = Get-Content -Path $installOutputFilePath | Where-Object {$_ -match "reinstall" -OR $_ -match "already installed"}
|
|
||||||
if ($keywordsFound) {
|
|
||||||
$tryUpgrade = $true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
# TODO: Implement the Upgrade part using 'choco upgrade' command, this will make choco consistent with WinGet, as WinGet tries to Upgrade when you use the install command.
|
|
||||||
if ($tryUpgrade) {
|
|
||||||
throw "Automatic Upgrade for Choco isn't implemented yet, a feature to make it consistent with WinGet, the install command using choco simply failed because $($Program.choco) is already installed."
|
|
||||||
}
|
|
||||||
if(($chocoInstallStatus -eq 0) -AND ($tryUpgrade -eq $false)){
|
|
||||||
Write-Host "$($Program.choco) installed successfully using Chocolatey."
|
|
||||||
continue
|
|
||||||
} else {
|
|
||||||
Write-Host "Failed to install $($Program.choco) using Chocolatey, Chocolatey output:`n`n$(Get-Content -Path $installOutputFilePath)."
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
Write-Host "Failed to install $($Program.choco) due to an error: $_"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if($manage -eq "Uninstalling"){
|
|
||||||
write-host "Starting uninstall of $($Program.choco) with Chocolatey."
|
|
||||||
try{
|
|
||||||
$uninstallOutputFilePath = "$env:TEMP\Install-WinUtilProgramChoco.uninstall-command.output.txt"
|
|
||||||
New-Item -ItemType File -Path $uninstallOutputFilePath
|
|
||||||
$chocoUninstallStatus = $(Start-Process -FilePath "choco" -ArgumentList "uninstall $($Program.choco) -y" -Wait -PassThru).ExitCode
|
|
||||||
if($chocoUninstallStatus -eq 0){
|
|
||||||
Write-Host "$($Program.choco) uninstalled successfully using Chocolatey."
|
|
||||||
continue
|
|
||||||
} else {
|
|
||||||
Write-Host "Failed to uninstall $($Program.choco) using Chocolatey, Chocolatey output:`n`n$(Get-Content -Path $uninstallOutputFilePath)."
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
Write-Host "Failed to uninstall $($Program.choco) due to an error: $_"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$x++
|
|
||||||
}
|
|
||||||
Write-Progress -Activity "$manage Applications" -Status "Finished" -Completed
|
|
||||||
|
|
||||||
# Cleanup leftovers files
|
|
||||||
if(Test-Path -Path $installOutputFilePath){ Remove-Item -Path $installOutputFilePath }
|
|
||||||
if(Test-Path -Path $uninstallOutputFilePath){ Remove-Item -Path $uninstallOutputFilePath }
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
@ -12,92 +12,64 @@ Function Install-WinUtilProgramWinget {
|
|||||||
|
|
||||||
.NOTES
|
.NOTES
|
||||||
The triple quotes are required any time you need a " in a normal script block.
|
The triple quotes are required any time you need a " in a normal script block.
|
||||||
The winget Return codes are documented here: https://github.com/microsoft/winget-cli/blob/master/doc/windows/package-manager/winget/returnCodes.md
|
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory, Position=0)]
|
$ProgramsToInstall,
|
||||||
[PsCustomObject]$ProgramsToInstall,
|
$manage = "Installing"
|
||||||
|
|
||||||
[Parameter(Position=1)]
|
|
||||||
[String]$manage = "Installing"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
$x = 0
|
$x = 0
|
||||||
$count = $ProgramsToInstall.Count
|
$count = $($ProgramsToInstall -split ",").Count
|
||||||
|
|
||||||
Write-Progress -Activity "$manage Applications" -Status "Starting" -PercentComplete 0
|
Write-Progress -Activity "$manage Applications" -Status "Starting" -PercentComplete 0
|
||||||
Write-Host "==========================================="
|
|
||||||
Write-Host "-- Configuring winget packages ---"
|
Foreach ($Program in $($ProgramsToInstall -split ",")){
|
||||||
Write-Host "==========================================="
|
|
||||||
Foreach ($Program in $ProgramsToInstall){
|
Write-Progress -Activity "$manage Applications" -Status "$manage $Program $($x + 1) of $count" -PercentComplete $($x/$count*100)
|
||||||
$failedPackages = @()
|
|
||||||
Write-Progress -Activity "$manage Applications" -Status "$manage $($Program.winget) $($x + 1) of $count" -PercentComplete $($x/$count*100)
|
|
||||||
if($manage -eq "Installing"){
|
if($manage -eq "Installing"){
|
||||||
# Install package via ID, if it fails try again with different scope and then with an unelevated prompt.
|
# Install package via ID, if it fails try again with different scope and then with an unelevated prompt.
|
||||||
# Since Install-WinGetPackage might not be directly available, we use winget install command as a workaround.
|
# Since Install-WinGetPackage might not be directly available, we use winget install command as a workaround.
|
||||||
# Winget, not all installers honor any of the following: System-wide, User Installs, or Unelevated Prompt OR Silent Install Mode.
|
# Winget, not all installers honor any of the following: System-wide, User Installs, or Unelevated Prompt OR Silent Install Mode.
|
||||||
# This is up to the individual package maintainers to enable these options. Aka. not as clean as Linux Package Managers.
|
# This is up to the individual package maintainers to enable these options. Aka. not as clean as Linux Package Managers.
|
||||||
Write-Host "Starting install of $($Program.winget) with winget."
|
|
||||||
try {
|
try {
|
||||||
$status = $(Start-Process -FilePath "winget" -ArgumentList "install --id $($Program.winget) --silent --accept-source-agreements --accept-package-agreements" -Wait -PassThru -NoNewWindow).ExitCode
|
$status = $(Start-Process -FilePath "winget" -ArgumentList "install --id $Program --silent --accept-source-agreements --accept-package-agreements" -Wait -PassThru).ExitCode
|
||||||
if($status -eq 0){
|
if($status -ne 0){
|
||||||
Write-Host "$($Program.winget) installed successfully."
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if ($status -eq -1978335189){
|
|
||||||
Write-Host "$($Program.winget) No applicable update found"
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
Write-Host "Attempt with User scope"
|
Write-Host "Attempt with User scope"
|
||||||
$status = $(Start-Process -FilePath "winget" -ArgumentList "install --id $($Program.winget) --scope user --silent --accept-source-agreements --accept-package-agreements" -Wait -PassThru -NoNewWindow).ExitCode
|
$status = $(Start-Process -FilePath "winget" -ArgumentList "install --id $Program --scope user --silent --accept-source-agreements --accept-package-agreements" -Wait -PassThru).ExitCode
|
||||||
if($status -eq 0){
|
if($status -ne 0){
|
||||||
Write-Host "$($Program.winget) installed successfully with User scope."
|
Write-Host "Attempt with Unelevated prompt"
|
||||||
continue
|
$status = $(Start-Process -FilePath "powershell" -ArgumentList "-Command Start-Process winget -ArgumentList 'install --id $Program --silent --accept-source-agreements --accept-package-agreements' -Verb runAsUser" -Wait -PassThru).ExitCode
|
||||||
}
|
if($status -ne 0){
|
||||||
if ($status -eq -1978335189){
|
Write-Host "Failed to install $Program."
|
||||||
Write-Host "$($Program.winget) No applicable update found"
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
Write-Host "Attempt with User prompt"
|
|
||||||
$userChoice = [System.Windows.MessageBox]::Show("Do you want to attempt $($Program.winget) installation with specific user credentials? Select 'Yes' to proceed or 'No' to skip.", "User Credential Prompt", [System.Windows.MessageBoxButton]::YesNo)
|
|
||||||
if ($userChoice -eq 'Yes') {
|
|
||||||
$getcreds = Get-Credential
|
|
||||||
$process = Start-Process -FilePath "winget" -ArgumentList "install --id $($Program.winget) --silent --accept-source-agreements --accept-package-agreements" -Credential $getcreds -PassThru -NoNewWindow
|
|
||||||
Wait-Process -Id $process.Id
|
|
||||||
$status = $process.ExitCode
|
|
||||||
} else {
|
} else {
|
||||||
Write-Host "Skipping installation with specific user credentials."
|
Write-Host "$Program installed successfully with Unelevated prompt."
|
||||||
}
|
}
|
||||||
if($status -eq 0){
|
} else {
|
||||||
Write-Host "$($Program.winget) installed successfully with User prompt."
|
Write-Host "$Program installed successfully with User scope."
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
if ($status -eq -1978335189){
|
} else {
|
||||||
Write-Host "$($Program.winget) No applicable update found"
|
Write-Host "$Program installed successfully."
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
Write-Host "Failed to install $($Program.winget). With winget"
|
Write-Host "Failed to install $Program due to an error: $_"
|
||||||
$failedPackages += $Program
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if($manage -eq "Uninstalling"){
|
if($manage -eq "Uninstalling"){
|
||||||
# Uninstall package via ID using winget directly.
|
# Uninstall package via ID using winget directly.
|
||||||
try {
|
try {
|
||||||
$status = $(Start-Process -FilePath "winget" -ArgumentList "uninstall --id $($Program.winget) --silent" -Wait -PassThru -NoNewWindow).ExitCode
|
$status = $(Start-Process -FilePath "winget" -ArgumentList "uninstall --id $Program --silent" -Wait -PassThru).ExitCode
|
||||||
if($status -ne 0){
|
if($status -ne 0){
|
||||||
Write-Host "Failed to uninstall $($Program.winget)."
|
Write-Host "Failed to uninstall $Program."
|
||||||
} else {
|
} else {
|
||||||
Write-Host "$($Program.winget) uninstalled successfully."
|
Write-Host "$Program uninstalled successfully."
|
||||||
$failedPackages += $Program
|
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
Write-Host "Failed to uninstall $($Program.winget) due to an error: $_"
|
Write-Host "Failed to uninstall $Program due to an error: $_"
|
||||||
$failedPackages += $Program
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$X++
|
$X++
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Progress -Activity "$manage Applications" -Status "Finished" -Completed
|
Write-Progress -Activity "$manage Applications" -Status "Finished" -Completed
|
||||||
return $failedPackages;
|
|
||||||
}
|
}
|
||||||
|
@ -53,8 +53,6 @@ function Install-WinUtilWinget {
|
|||||||
Write-Host "Failure detected while installing via GitHub method. Continuing with Chocolatey method as fallback." -ForegroundColor Red
|
Write-Host "Failure detected while installing via GitHub method. Continuing with Chocolatey method as fallback." -ForegroundColor Red
|
||||||
# In case install fails via GitHub method.
|
# In case install fails via GitHub method.
|
||||||
Try {
|
Try {
|
||||||
# Install Choco if not already present
|
|
||||||
Install-WinUtilChoco
|
|
||||||
Start-Process -Verb runas -FilePath powershell.exe -ArgumentList "choco install winget-cli"
|
Start-Process -Verb runas -FilePath powershell.exe -ArgumentList "choco install winget-cli"
|
||||||
Write-Host "Winget Installed" -ForegroundColor Green
|
Write-Host "Winget Installed" -ForegroundColor Green
|
||||||
Write-Output "Refreshing Environment Variables...`n"
|
Write-Output "Refreshing Environment Variables...`n"
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
function Invoke-MicroWin-Helper {
|
||||||
|
<#
|
||||||
|
|
||||||
|
.SYNOPSIS
|
||||||
|
checking unit tests
|
||||||
|
|
||||||
|
.PARAMETER Name
|
||||||
|
no parameters
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
placeholder
|
||||||
|
|
||||||
|
#>
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
function Test-CompatibleImage() {
|
function Test-CompatibleImage() {
|
||||||
<#
|
<#
|
||||||
|
|
||||||
@ -159,14 +175,8 @@ function Remove-ProvisionedPackages([switch] $keepSecurity = $false)
|
|||||||
{
|
{
|
||||||
$status = "Removing Provisioned $($appx.PackageName)"
|
$status = "Removing Provisioned $($appx.PackageName)"
|
||||||
Write-Progress -Activity "Removing Provisioned Apps" -Status $status -PercentComplete ($counter++/$appxProvisionedPackages.Count*100)
|
Write-Progress -Activity "Removing Provisioned Apps" -Status $status -PercentComplete ($counter++/$appxProvisionedPackages.Count*100)
|
||||||
try {
|
|
||||||
Remove-AppxProvisionedPackage -Path $scratchDir -PackageName $appx.PackageName -ErrorAction SilentlyContinue
|
Remove-AppxProvisionedPackage -Path $scratchDir -PackageName $appx.PackageName -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
catch {
|
|
||||||
Write-Host "Application $($appx.PackageName) could not be removed"
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Write-Progress -Activity "Removing Provisioned Apps" -Status "Ready" -Completed
|
Write-Progress -Activity "Removing Provisioned Apps" -Status "Ready" -Completed
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -58,9 +58,6 @@ Function Invoke-WinUtilCurrentSystem {
|
|||||||
$values += $False
|
$values += $False
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
$values += $False
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,21 +1,29 @@
|
|||||||
function Invoke-WinUtilGPU {
|
function Invoke-WinUtilGPU {
|
||||||
$gpuInfo = Get-CimInstance Win32_VideoController
|
$gpuInfo = Get-CimInstance Win32_VideoController
|
||||||
|
|
||||||
# GPUs to blacklist from using Demanding Theming
|
foreach ($gpu in $gpuInfo) {
|
||||||
$lowPowerGPUs = (
|
$gpuName = $gpu.Name
|
||||||
"*NVIDIA GeForce*M*",
|
if ($gpuName -like "*NVIDIA*") {
|
||||||
"*NVIDIA GeForce*Laptop*",
|
return $true # NVIDIA GPU found
|
||||||
"*NVIDIA GeForce*GT*",
|
}
|
||||||
"*AMD Radeon(TM)*",
|
}
|
||||||
"*UHD*"
|
|
||||||
)
|
|
||||||
|
|
||||||
foreach ($gpu in $gpuInfo) {
|
foreach ($gpu in $gpuInfo) {
|
||||||
foreach ($gpuPattern in $lowPowerGPUs){
|
$gpuName = $gpu.Name
|
||||||
if ($gpu.Name -like $gpuPattern) {
|
if ($gpuName -like "*AMD Radeon RX*") {
|
||||||
return $false
|
return $true # AMD GPU Found
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
foreach ($gpu in $gpuInfo) {
|
||||||
|
$gpuName = $gpu.Name
|
||||||
|
if ($gpuName -like "*UHD*") {
|
||||||
|
return $false # Intel Intergrated GPU Found
|
||||||
|
}
|
||||||
|
}
|
||||||
|
foreach ($gpu in $gpuInfo) {
|
||||||
|
$gpuName = $gpu.Name
|
||||||
|
if ($gpuName -like "*AMD Radeon(TM)*") {
|
||||||
|
return $false # AMD Intergrated GPU Found
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return $true
|
|
||||||
}
|
}
|
@ -1,34 +0,0 @@
|
|||||||
function Invoke-WinUtilHiddenFiles {
|
|
||||||
<#
|
|
||||||
|
|
||||||
.SYNOPSIS
|
|
||||||
Enable/Disable Hidden Files
|
|
||||||
|
|
||||||
.PARAMETER Enabled
|
|
||||||
Indicates whether to enable or disable Hidden Files
|
|
||||||
|
|
||||||
#>
|
|
||||||
Param($Enabled)
|
|
||||||
Try{
|
|
||||||
if ($Enabled -eq $false){
|
|
||||||
Write-Host "Enabling Hidden Files"
|
|
||||||
$value = 1
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Write-Host "Disabling Hidden Files"
|
|
||||||
$value = 0
|
|
||||||
}
|
|
||||||
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
|
||||||
Set-ItemProperty -Path $Path -Name Hidden -Value $value
|
|
||||||
}
|
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
|
||||||
}
|
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
|
||||||
}
|
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
|
||||||
}
|
|
||||||
}
|
|
@ -15,8 +15,7 @@ function Invoke-WinUtilNumLock {
|
|||||||
Write-Host "Disabling Numlock on startup"
|
Write-Host "Disabling Numlock on startup"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
New-PSDrive -PSProvider Registry -Name HKU -Root HKEY_USERS
|
$Path = "HKCU:\Control Panel\Keyboard"
|
||||||
$Path = "HKU:\.Default\Control Panel\Keyboard"
|
|
||||||
Set-ItemProperty -Path $Path -Name InitialKeyboardIndicators -Value $value
|
Set-ItemProperty -Path $Path -Name InitialKeyboardIndicators -Value $value
|
||||||
}
|
}
|
||||||
Catch [System.Security.SecurityException] {
|
Catch [System.Security.SecurityException] {
|
||||||
|
@ -1,45 +0,0 @@
|
|||||||
Function Invoke-WinUtilSponsors {
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Lists Sponsors from ChrisTitusTech
|
|
||||||
.DESCRIPTION
|
|
||||||
Lists Sponsors from ChrisTitusTech
|
|
||||||
.EXAMPLE
|
|
||||||
Invoke-WinUtilSponsors
|
|
||||||
.NOTES
|
|
||||||
This function is used to list sponsors from ChrisTitusTech
|
|
||||||
#>
|
|
||||||
try {
|
|
||||||
# Define the URL and headers
|
|
||||||
$url = "https://github.com/sponsors/ChrisTitusTech"
|
|
||||||
$headers = @{
|
|
||||||
"User-Agent" = "Chrome/58.0.3029.110"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Fetch the webpage content
|
|
||||||
try {
|
|
||||||
$html = Invoke-RestMethod -Uri $url -Headers $headers
|
|
||||||
} catch {
|
|
||||||
Write-Output $_.Exception.Message
|
|
||||||
exit
|
|
||||||
}
|
|
||||||
|
|
||||||
# Use regex to extract the content between "Current sponsors" and "Past sponsors"
|
|
||||||
$currentSponsorsPattern = '(?s)(?<=Current sponsors).*?(?=Past sponsors)'
|
|
||||||
$currentSponsorsHtml = [regex]::Match($html, $currentSponsorsPattern).Value
|
|
||||||
|
|
||||||
# Use regex to extract the sponsor usernames from the alt attributes in the "Current Sponsors" section
|
|
||||||
$sponsorPattern = '(?<=alt="@)[^"]+'
|
|
||||||
$sponsors = [regex]::Matches($currentSponsorsHtml, $sponsorPattern) | ForEach-Object { $_.Value }
|
|
||||||
|
|
||||||
# Exclude "ChrisTitusTech" from the sponsors
|
|
||||||
$sponsors = $sponsors | Where-Object { $_ -ne "ChrisTitusTech" }
|
|
||||||
|
|
||||||
# Return the sponsors
|
|
||||||
return $sponsors
|
|
||||||
}
|
|
||||||
catch {
|
|
||||||
Write-Error "An error occurred while fetching or processing the sponsors: $_"
|
|
||||||
return $null
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
function Invoke-WinUtilTaskView {
|
|
||||||
<#
|
|
||||||
|
|
||||||
.SYNOPSIS
|
|
||||||
Enable/Disable Task View
|
|
||||||
|
|
||||||
.PARAMETER Enabled
|
|
||||||
Indicates whether to enable or disable Task View
|
|
||||||
|
|
||||||
#>
|
|
||||||
Param($Enabled)
|
|
||||||
Try{
|
|
||||||
if ($Enabled -eq $false){
|
|
||||||
Write-Host "Enabling Task View"
|
|
||||||
$value = 1
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Write-Host "Disabling Task View"
|
|
||||||
$value = 0
|
|
||||||
}
|
|
||||||
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
|
||||||
Set-ItemProperty -Path $Path -Name ShowTaskViewButton -Value $value
|
|
||||||
}
|
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
|
||||||
}
|
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
|
||||||
}
|
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
function Invoke-WinUtilTaskbarAlignment {
|
|
||||||
<#
|
|
||||||
|
|
||||||
.SYNOPSIS
|
|
||||||
Switches between Center & Left Taskbar Alignment
|
|
||||||
|
|
||||||
.PARAMETER Enabled
|
|
||||||
Indicates whether to make Taskbar Alignment Center or Left
|
|
||||||
|
|
||||||
#>
|
|
||||||
Param($Enabled)
|
|
||||||
Try{
|
|
||||||
if ($Enabled -eq $false){
|
|
||||||
Write-Host "Making Taskbar Alignment to the Center"
|
|
||||||
$value = 1
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Write-Host "Making Taskbar Alignment to the Left"
|
|
||||||
$value = 0
|
|
||||||
}
|
|
||||||
$Path = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
|
||||||
Set-ItemProperty -Path $Path -Name "TaskbarAl" -Value $value
|
|
||||||
}
|
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $value due to a Security Exception"
|
|
||||||
}
|
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
|
||||||
}
|
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
function Invoke-WinUtilTaskbarSearch {
|
|
||||||
<#
|
|
||||||
|
|
||||||
.SYNOPSIS
|
|
||||||
Enable/Disable Taskbar Search Button.
|
|
||||||
|
|
||||||
.PARAMETER Enabled
|
|
||||||
Indicates whether to enable or disable Taskbar Search Button.
|
|
||||||
|
|
||||||
#>
|
|
||||||
Param($Enabled)
|
|
||||||
Try{
|
|
||||||
if ($Enabled -eq $false){
|
|
||||||
Write-Host "Enabling Search Button"
|
|
||||||
$value = 1
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Write-Host "Disabling Search Button"
|
|
||||||
$value = 0
|
|
||||||
}
|
|
||||||
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search\"
|
|
||||||
Set-ItemProperty -Path $Path -Name SearchboxTaskbarMode -Value $value
|
|
||||||
}
|
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
|
||||||
}
|
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
|
||||||
}
|
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
|
||||||
}
|
|
||||||
}
|
|
@ -24,7 +24,6 @@ function Set-WinUtilDNS {
|
|||||||
}
|
}
|
||||||
Else{
|
Else{
|
||||||
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary)", "$($sync.configs.dns.$DNSProvider.Secondary)")
|
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary)", "$($sync.configs.dns.$DNSProvider.Secondary)")
|
||||||
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary6)", "$($sync.configs.dns.$DNSProvider.Secondary6)")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,18 +15,6 @@ function Show-CustomDialog {
|
|||||||
.PARAMETER Height
|
.PARAMETER Height
|
||||||
The height of the custom dialog window.
|
The height of the custom dialog window.
|
||||||
|
|
||||||
.PARAMETER FontSize
|
|
||||||
The Font Size for text shown inside the custom dialog window.
|
|
||||||
|
|
||||||
.PARAMETER HeaderFontSize
|
|
||||||
The Font Size for the Header of the custom dialog window.
|
|
||||||
|
|
||||||
.PARAMETER IconSize
|
|
||||||
The Size to use for Icon inside the custom dialog window.
|
|
||||||
|
|
||||||
.PARAMETER EnableScroll
|
|
||||||
A flag indicating whether to enable scrolling if the content exceeds the window size.
|
|
||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Show-CustomDialog -Message "This is a custom dialog with a message and an image above." -Width 300 -Height 200
|
Show-CustomDialog -Message "This is a custom dialog with a message and an image above." -Width 300 -Height 200
|
||||||
|
|
||||||
@ -34,11 +22,7 @@ function Show-CustomDialog {
|
|||||||
param(
|
param(
|
||||||
[string]$Message,
|
[string]$Message,
|
||||||
[int]$Width = 300,
|
[int]$Width = 300,
|
||||||
[int]$Height = 200,
|
[int]$Height = 200
|
||||||
[int]$FontSize = 10,
|
|
||||||
[int]$HeaderFontSize = 14,
|
|
||||||
[int]$IconSize = 25,
|
|
||||||
[bool]$EnableScroll = $false
|
|
||||||
)
|
)
|
||||||
|
|
||||||
Add-Type -AssemblyName PresentationFramework
|
Add-Type -AssemblyName PresentationFramework
|
||||||
@ -64,7 +48,6 @@ function Show-CustomDialog {
|
|||||||
$dialog.Foreground = $foregroundColor
|
$dialog.Foreground = $foregroundColor
|
||||||
$dialog.Background = $backgroundColor
|
$dialog.Background = $backgroundColor
|
||||||
$dialog.FontFamily = $font
|
$dialog.FontFamily = $font
|
||||||
$dialog.FontSize = $FontSize
|
|
||||||
|
|
||||||
# Create a Border for the green edge with rounded corners
|
# Create a Border for the green edge with rounded corners
|
||||||
$border = New-Object Windows.Controls.Border
|
$border = New-Object Windows.Controls.Border
|
||||||
@ -128,8 +111,8 @@ function Show-CustomDialog {
|
|||||||
[Windows.Controls.Grid]::SetRow($stackPanel, 0) # Set the row to the second row (0-based index)
|
[Windows.Controls.Grid]::SetRow($stackPanel, 0) # Set the row to the second row (0-based index)
|
||||||
|
|
||||||
$viewbox = New-Object Windows.Controls.Viewbox
|
$viewbox = New-Object Windows.Controls.Viewbox
|
||||||
$viewbox.Width = $IconSize
|
$viewbox.Width = 25
|
||||||
$viewbox.Height = $IconSize
|
$viewbox.Height = 25
|
||||||
|
|
||||||
# Combine the paths into a single string
|
# Combine the paths into a single string
|
||||||
# $cttLogoPath = @"
|
# $cttLogoPath = @"
|
||||||
@ -191,82 +174,24 @@ $cttLogoPath = @"
|
|||||||
# Add "Winutil" text
|
# Add "Winutil" text
|
||||||
$winutilTextBlock = New-Object Windows.Controls.TextBlock
|
$winutilTextBlock = New-Object Windows.Controls.TextBlock
|
||||||
$winutilTextBlock.Text = "Winutil"
|
$winutilTextBlock.Text = "Winutil"
|
||||||
$winutilTextBlock.FontSize = $HeaderFontSize
|
$winutilTextBlock.FontSize = 18 # Adjust font size as needed
|
||||||
$winutilTextBlock.Foreground = $foregroundColor
|
$winutilTextBlock.Foreground = $foregroundColor
|
||||||
$winutilTextBlock.Margin = New-Object Windows.Thickness(10, 5, 10, 5) # Add margins around the text block
|
$winutilTextBlock.Margin = New-Object Windows.Thickness(10, 5, 10, 5) # Add margins around the text block
|
||||||
$stackPanel.Children.Add($winutilTextBlock)
|
$stackPanel.Children.Add($winutilTextBlock)
|
||||||
|
|
||||||
# Add TextBlock for information with text wrapping and margins
|
# Add TextBlock for information with text wrapping and margins
|
||||||
$messageTextBlock = New-Object Windows.Controls.TextBlock
|
$messageTextBlock = New-Object Windows.Controls.TextBlock
|
||||||
|
$messageTextBlock.Text = $Message
|
||||||
$messageTextBlock.TextWrapping = [Windows.TextWrapping]::Wrap # Enable text wrapping
|
$messageTextBlock.TextWrapping = [Windows.TextWrapping]::Wrap # Enable text wrapping
|
||||||
$messageTextBlock.HorizontalAlignment = [Windows.HorizontalAlignment]::Left
|
$messageTextBlock.HorizontalAlignment = [Windows.HorizontalAlignment]::Left
|
||||||
$messageTextBlock.VerticalAlignment = [Windows.VerticalAlignment]::Top
|
$messageTextBlock.VerticalAlignment = [Windows.VerticalAlignment]::Top
|
||||||
$messageTextBlock.Margin = New-Object Windows.Thickness(10) # Add margins around the text block
|
$messageTextBlock.Margin = New-Object Windows.Thickness(10) # Add margins around the text block
|
||||||
|
|
||||||
# Define the Regex to find hyperlinks formatted as HTML <a> tags
|
|
||||||
$regex = [regex]::new('<a href="([^"]+)">([^<]+)</a>')
|
|
||||||
$lastPos = 0
|
|
||||||
|
|
||||||
# Iterate through each match and add regular text and hyperlinks
|
|
||||||
foreach ($match in $regex.Matches($Message)) {
|
|
||||||
# Add the text before the hyperlink, if any
|
|
||||||
$textBefore = $Message.Substring($lastPos, $match.Index - $lastPos)
|
|
||||||
if ($textBefore.Length -gt 0) {
|
|
||||||
$messageTextBlock.Inlines.Add((New-Object Windows.Documents.Run($textBefore)))
|
|
||||||
}
|
|
||||||
|
|
||||||
# Create and add the hyperlink
|
|
||||||
$hyperlink = New-Object Windows.Documents.Hyperlink
|
|
||||||
$hyperlink.NavigateUri = New-Object System.Uri($match.Groups[1].Value)
|
|
||||||
$hyperlink.Inlines.Add($match.Groups[2].Value)
|
|
||||||
$hyperlink.TextDecorations = [Windows.TextDecorations]::None # Remove underline
|
|
||||||
$hyperlink.Foreground = $foregroundColor
|
|
||||||
$hyperlink.Add_Click({
|
|
||||||
param($sender, $args)
|
|
||||||
Start-Process $sender.NavigateUri.AbsoluteUri
|
|
||||||
})
|
|
||||||
$hyperlink.Add_MouseEnter({
|
|
||||||
param($sender, $args)
|
|
||||||
$sender.Foreground = [Windows.Media.Brushes]::LightGray
|
|
||||||
})
|
|
||||||
$hyperlink.Add_MouseLeave({
|
|
||||||
param($sender, $args)
|
|
||||||
$sender.Foreground = $foregroundColor
|
|
||||||
})
|
|
||||||
|
|
||||||
$messageTextBlock.Inlines.Add($hyperlink)
|
|
||||||
|
|
||||||
# Update the last position
|
|
||||||
$lastPos = $match.Index + $match.Length
|
|
||||||
}
|
|
||||||
|
|
||||||
# Add any remaining text after the last hyperlink
|
|
||||||
if ($lastPos -lt $Message.Length) {
|
|
||||||
$textAfter = $Message.Substring($lastPos)
|
|
||||||
$messageTextBlock.Inlines.Add((New-Object Windows.Documents.Run($textAfter)))
|
|
||||||
}
|
|
||||||
|
|
||||||
# If no matches, add the entire message as a run
|
|
||||||
if ($regex.Matches($Message).Count -eq 0) {
|
|
||||||
$messageTextBlock.Inlines.Add((New-Object Windows.Documents.Run($Message)))
|
|
||||||
}
|
|
||||||
|
|
||||||
# Create a ScrollViewer if EnableScroll is true
|
|
||||||
if ($EnableScroll) {
|
|
||||||
$scrollViewer = New-Object System.Windows.Controls.ScrollViewer
|
|
||||||
$scrollViewer.VerticalScrollBarVisibility = 'Auto'
|
|
||||||
$scrollViewer.HorizontalScrollBarVisibility = 'Disabled'
|
|
||||||
$scrollViewer.Content = $messageTextBlock
|
|
||||||
$grid.Children.Add($scrollViewer)
|
|
||||||
[Windows.Controls.Grid]::SetRow($scrollViewer, 1) # Set the row to the second row (0-based index)
|
|
||||||
} else {
|
|
||||||
$grid.Children.Add($messageTextBlock)
|
$grid.Children.Add($messageTextBlock)
|
||||||
[Windows.Controls.Grid]::SetRow($messageTextBlock, 1) # Set the row to the second row (0-based index)
|
[Windows.Controls.Grid]::SetRow($messageTextBlock, 1) # Set the row to the second row (0-based index)
|
||||||
}
|
|
||||||
|
|
||||||
# Add OK button
|
# Add OK button
|
||||||
$okButton = New-Object Windows.Controls.Button
|
$okButton = New-Object Windows.Controls.Button
|
||||||
$okButton.Content = "OK"
|
$okButton.Content = "OK"
|
||||||
$okButton.FontSize = $FontSize
|
|
||||||
$okButton.Width = 80
|
$okButton.Width = 80
|
||||||
$okButton.Height = 30
|
$okButton.Height = 30
|
||||||
$okButton.HorizontalAlignment = [Windows.HorizontalAlignment]::Center
|
$okButton.HorizontalAlignment = [Windows.HorizontalAlignment]::Center
|
||||||
|
@ -21,14 +21,15 @@ function Invoke-WPFButton {
|
|||||||
"WPFinstall" {Invoke-WPFInstall}
|
"WPFinstall" {Invoke-WPFInstall}
|
||||||
"WPFuninstall" {Invoke-WPFUnInstall}
|
"WPFuninstall" {Invoke-WPFUnInstall}
|
||||||
"WPFInstallUpgrade" {Invoke-WPFInstallUpgrade}
|
"WPFInstallUpgrade" {Invoke-WPFInstallUpgrade}
|
||||||
"WPFstandard" {Invoke-WPFPresets "Standard"}
|
"WPFdesktop" {Invoke-WPFPresets "Desktop"}
|
||||||
"WPFminimal" {Invoke-WPFPresets "Minimal"}
|
"WPFlaptop" {Invoke-WPFPresets "laptop"}
|
||||||
|
"WPFminimal" {Invoke-WPFPresets "minimal"}
|
||||||
"WPFclear" {Invoke-WPFPresets -preset $null -imported $true}
|
"WPFclear" {Invoke-WPFPresets -preset $null -imported $true}
|
||||||
"WPFclearWinget" {Invoke-WPFPresets -preset $null -imported $true -CheckBox "WPFInstall"}
|
"WPFclearWinget" {Invoke-WPFPresets -preset $null -imported $true -CheckBox "WPFInstall"}
|
||||||
"WPFtweaksbutton" {Invoke-WPFtweaksbutton}
|
"WPFtweaksbutton" {Invoke-WPFtweaksbutton}
|
||||||
"WPFOOSUbutton" {Invoke-WPFOOSU}
|
"WPFOOSUbutton" {Invoke-WPFOOSU -action "customize"}
|
||||||
"WPFAddUltPerf" {Invoke-WPFUltimatePerformance -State "Enable"}
|
"WPFAddUltPerf" {Invoke-WPFUltimatePerformance -State "Enabled"}
|
||||||
"WPFRemoveUltPerf" {Invoke-WPFUltimatePerformance -State "Disable"}
|
"WPFRemoveUltPerf" {Invoke-WPFUltimatePerformance -State "Disabled"}
|
||||||
"WPFundoall" {Invoke-WPFundoall}
|
"WPFundoall" {Invoke-WPFundoall}
|
||||||
"WPFFeatureInstall" {Invoke-WPFFeatureInstall}
|
"WPFFeatureInstall" {Invoke-WPFFeatureInstall}
|
||||||
"WPFPanelDISM" {Invoke-WPFPanelDISM}
|
"WPFPanelDISM" {Invoke-WPFPanelDISM}
|
||||||
|
@ -7,8 +7,7 @@ function Invoke-WPFFixesWinget {
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
BravoNorris for the fantastic idea of a button to reinstall winget
|
BravoNorris for the fantastic idea of a button to reinstall winget
|
||||||
#>
|
#>
|
||||||
# Install Choco if not already present
|
|
||||||
Install-WinUtilChoco
|
|
||||||
Start-Process -FilePath "choco" -ArgumentList "install winget -y --force" -NoNewWindow -Wait
|
Start-Process -FilePath "choco" -ArgumentList "install winget -y --force" -NoNewWindow -Wait
|
||||||
|
|
||||||
}
|
}
|
@ -23,6 +23,10 @@ function Invoke-WPFGetIso {
|
|||||||
Write-Host "\/ \/|_| \___||_| \___/ \/ \/ |_||_| |_| "
|
Write-Host "\/ \/|_| \___||_| \___/ \/ \/ |_||_| |_| "
|
||||||
|
|
||||||
$oscdimgPath = Join-Path $env:TEMP 'oscdimg.exe'
|
$oscdimgPath = Join-Path $env:TEMP 'oscdimg.exe'
|
||||||
|
if( ! (Test-Path $oscdimgPath -PathType Leaf) ) {
|
||||||
|
$oscdimgPath = Join-Path '.\releases\' 'oscdimg.exe'
|
||||||
|
}
|
||||||
|
|
||||||
$oscdImgFound = [bool] (Get-Command -ErrorAction Ignore -Type Application oscdimg.exe) -or (Test-Path $oscdimgPath -PathType Leaf)
|
$oscdImgFound = [bool] (Get-Command -ErrorAction Ignore -Type Application oscdimg.exe) -or (Test-Path $oscdimgPath -PathType Leaf)
|
||||||
Write-Host "oscdimg.exe on system: $oscdImgFound"
|
Write-Host "oscdimg.exe on system: $oscdImgFound"
|
||||||
|
|
||||||
@ -37,8 +41,6 @@ function Invoke-WPFGetIso {
|
|||||||
# you consent to downloading it, no need to show extra dialogs
|
# you consent to downloading it, no need to show extra dialogs
|
||||||
[System.Windows.MessageBox]::Show("oscdimge.exe is not found on the system, winutil will now attempt do download and install it using choco. This might take a long time.")
|
[System.Windows.MessageBox]::Show("oscdimge.exe is not found on the system, winutil will now attempt do download and install it using choco. This might take a long time.")
|
||||||
# the step below needs choco to download oscdimg
|
# the step below needs choco to download oscdimg
|
||||||
# Install Choco if not already present
|
|
||||||
Install-WinUtilChoco
|
|
||||||
$chocoFound = [bool] (Get-Command -ErrorAction Ignore -Type Application choco)
|
$chocoFound = [bool] (Get-Command -ErrorAction Ignore -Type Application choco)
|
||||||
Write-Host "choco on system: $chocoFound"
|
Write-Host "choco on system: $chocoFound"
|
||||||
if (!$chocoFound)
|
if (!$chocoFound)
|
||||||
|
@ -12,43 +12,23 @@ function Invoke-WPFInstall {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
$PackagesToInstall = (Get-WinUtilCheckBoxes)["Install"]
|
$WingetInstall = (Get-WinUtilCheckBoxes)["Install"]
|
||||||
Write-Host $PackagesToInstall
|
|
||||||
if ($PackagesToInstall.Count -eq 0) {
|
if ($wingetinstall.Count -eq 0) {
|
||||||
$WarningMsg = "Please select the program(s) to install or upgrade"
|
$WarningMsg = "Please select the program(s) to install or upgrade"
|
||||||
[System.Windows.MessageBox]::Show($WarningMsg, $AppTitle, [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
[System.Windows.MessageBox]::Show($WarningMsg, $AppTitle, [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
Invoke-WPFRunspace -ArgumentList $PackagesToInstall -DebugPreference $DebugPreference -ScriptBlock {
|
Invoke-WPFRunspace -ArgumentList $WingetInstall -DebugPreference $DebugPreference -ScriptBlock {
|
||||||
param($PackagesToInstall, $DebugPreference)
|
param($WingetInstall, $DebugPreference)
|
||||||
$packagesWinget, $packagesChoco = {
|
|
||||||
$packagesWinget = [System.Collections.Generic.List`1[System.Object]]::new()
|
|
||||||
$packagesChoco = [System.Collections.Generic.List`1[System.Object]]::new()
|
|
||||||
foreach ($package in $PackagesToInstall) {
|
|
||||||
if ($package.winget -eq "na") {
|
|
||||||
$packagesChoco.add($package)
|
|
||||||
Write-Host "Queueing $($package.choco) for Chocolatey install"
|
|
||||||
} else {
|
|
||||||
$packagesWinget.add($package)
|
|
||||||
Write-Host "Queueing $($package.winget) for Winget install"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $packagesWinget, $packagesChoco
|
|
||||||
}.Invoke($PackagesToInstall)
|
|
||||||
|
|
||||||
try{
|
try{
|
||||||
$sync.ProcessRunning = $true
|
$sync.ProcessRunning = $true
|
||||||
$errorPackages = @()
|
|
||||||
if($packagesWinget.Count -gt 0){
|
|
||||||
Install-WinUtilWinget
|
Install-WinUtilWinget
|
||||||
$errorPackages += Install-WinUtilProgramWinget -ProgramsToInstall $packagesWinget
|
Install-WinUtilProgramWinget -ProgramsToInstall $WingetInstall
|
||||||
$errorPackages| ForEach-Object {if($_.choco -ne "na") {$packagesChoco += $_}}
|
|
||||||
}
|
|
||||||
if($packagesChoco.Count -gt 0){
|
|
||||||
Install-WinUtilChoco
|
|
||||||
Install-WinUtilProgramChoco -ProgramsToInstall $packagesChoco
|
|
||||||
}
|
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
Write-Host "-- Installs have finished ---"
|
Write-Host "-- Installs have finished ---"
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
|
@ -53,7 +53,6 @@ public class PowerManagement {
|
|||||||
$keepEdge = $sync.WPFMicrowinKeepEdge.IsChecked
|
$keepEdge = $sync.WPFMicrowinKeepEdge.IsChecked
|
||||||
$copyToUSB = $sync.WPFMicrowinCopyToUsb.IsChecked
|
$copyToUSB = $sync.WPFMicrowinCopyToUsb.IsChecked
|
||||||
$injectDrivers = $sync.MicrowinInjectDrivers.IsChecked
|
$injectDrivers = $sync.MicrowinInjectDrivers.IsChecked
|
||||||
$importDrivers = $sync.MicrowinImportDrivers.IsChecked
|
|
||||||
|
|
||||||
$mountDir = $sync.MicrowinMountDir.Text
|
$mountDir = $sync.MicrowinMountDir.Text
|
||||||
$scratchDir = $sync.MicrowinScratchDir.Text
|
$scratchDir = $sync.MicrowinScratchDir.Text
|
||||||
@ -112,54 +111,13 @@ public class PowerManagement {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($importDrivers)
|
|
||||||
{
|
|
||||||
Write-Host "Exporting drivers from active installation..."
|
|
||||||
if (Test-Path "$env:TEMP\DRV_EXPORT")
|
|
||||||
{
|
|
||||||
Remove-Item "$env:TEMP\DRV_EXPORT" -Recurse -Force
|
|
||||||
}
|
|
||||||
if (($injectDrivers -and (Test-Path $sync.MicrowinDriverLocation.Text)))
|
|
||||||
{
|
|
||||||
Write-Host "Using specified driver source..."
|
|
||||||
dism /english /online /export-driver /destination="$($sync.MicrowinDriverLocation.Text)" | Out-Host
|
|
||||||
if ($?)
|
|
||||||
{
|
|
||||||
# Don't add exported drivers yet, that is run later
|
|
||||||
Write-Host "Drivers have been exported successfully."
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Failed to export drivers."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
New-Item -Path "$env:TEMP\DRV_EXPORT" -ItemType Directory -Force
|
|
||||||
dism /english /online /export-driver /destination="$env:TEMP\DRV_EXPORT" | Out-Host
|
|
||||||
if ($?)
|
|
||||||
{
|
|
||||||
Write-Host "Adding exported drivers..."
|
|
||||||
dism /english /image="$scratchDir" /add-driver /driver="$env:TEMP\DRV_EXPORT" /recurse | Out-Host
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Failed to export drivers. Continuing without importing them..."
|
|
||||||
}
|
|
||||||
if (Test-Path "$env:TEMP\DRV_EXPORT")
|
|
||||||
{
|
|
||||||
Remove-Item "$env:TEMP\DRV_EXPORT" -Recurse -Force
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($injectDrivers)
|
if ($injectDrivers)
|
||||||
{
|
{
|
||||||
$driverPath = $sync.MicrowinDriverLocation.Text
|
$driverPath = $sync.MicrowinDriverLocation.Text
|
||||||
if (Test-Path $driverPath)
|
if (Test-Path $driverPath)
|
||||||
{
|
{
|
||||||
Write-Host "Adding Windows Drivers image($scratchDir) drivers($driverPath) "
|
Write-Host "Adding Windows Drivers image($scratchDir) drivers($driverPath) "
|
||||||
dism /English /image:$scratchDir /add-driver /driver:$driverPath /recurse | Out-Host
|
Add-WindowsDriver -Path "$scratchDir" -Recurse -Driver "$driverPath"
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -171,14 +129,13 @@ public class PowerManagement {
|
|||||||
Remove-Features -keepDefender:$keepDefender
|
Remove-Features -keepDefender:$keepDefender
|
||||||
Write-Host "Removing features complete!"
|
Write-Host "Removing features complete!"
|
||||||
|
|
||||||
|
Write-Host "Removing Appx Bloat"
|
||||||
if (!$keepPackages)
|
if (!$keepPackages)
|
||||||
{
|
{
|
||||||
Write-Host "Removing OS packages"
|
|
||||||
Remove-Packages
|
Remove-Packages
|
||||||
}
|
}
|
||||||
if (!$keepProvisionedPackages)
|
if (!$keepProvisionedPackages)
|
||||||
{
|
{
|
||||||
Write-Host "Removing Appx Bloat"
|
|
||||||
Remove-ProvisionedPackages -keepSecurity:$keepDefender
|
Remove-ProvisionedPackages -keepSecurity:$keepDefender
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -245,27 +202,26 @@ public class PowerManagement {
|
|||||||
$desktopDir = "$($scratchDir)\Windows\Users\Default\Desktop"
|
$desktopDir = "$($scratchDir)\Windows\Users\Default\Desktop"
|
||||||
New-Item -ItemType Directory -Force -Path "$desktopDir"
|
New-Item -ItemType Directory -Force -Path "$desktopDir"
|
||||||
dism /English /image:$($scratchDir) /set-profilepath:"$($scratchDir)\Windows\Users\Default"
|
dism /English /image:$($scratchDir) /set-profilepath:"$($scratchDir)\Windows\Users\Default"
|
||||||
|
$command = "powershell.exe -NoProfile -ExecutionPolicy Bypass -Command 'irm https://christitus.com/win | iex'"
|
||||||
|
$shortcutPath = "$desktopDir\WinUtil.lnk"
|
||||||
|
$shell = New-Object -ComObject WScript.Shell
|
||||||
|
$shortcut = $shell.CreateShortcut($shortcutPath)
|
||||||
|
|
||||||
# $command = "powershell.exe -NoProfile -ExecutionPolicy Bypass -Command 'irm https://christitus.com/win | iex'"
|
if (Test-Path -Path "$env:TEMP\cttlogo.png")
|
||||||
# $shortcutPath = "$desktopDir\WinUtil.lnk"
|
{
|
||||||
# $shell = New-Object -ComObject WScript.Shell
|
$pngPath = "$env:TEMP\cttlogo.png"
|
||||||
# $shortcut = $shell.CreateShortcut($shortcutPath)
|
$icoPath = "$env:TEMP\cttlogo.ico"
|
||||||
|
ConvertTo-Icon -bitmapPath $pngPath -iconPath $icoPath
|
||||||
|
Write-Host "ICO file created at: $icoPath"
|
||||||
|
Copy-Item "$env:TEMP\cttlogo.png" "$($scratchDir)\Windows\cttlogo.png" -force
|
||||||
|
Copy-Item "$env:TEMP\cttlogo.ico" "$($scratchDir)\Windows\cttlogo.ico" -force
|
||||||
|
$shortcut.IconLocation = "c:\Windows\cttlogo.ico"
|
||||||
|
}
|
||||||
|
|
||||||
# if (Test-Path -Path "$env:TEMP\cttlogo.png")
|
$shortcut.TargetPath = "powershell.exe"
|
||||||
# {
|
$shortcut.Arguments = "-NoProfile -ExecutionPolicy Bypass -Command `"$command`""
|
||||||
# $pngPath = "$env:TEMP\cttlogo.png"
|
$shortcut.Save()
|
||||||
# $icoPath = "$env:TEMP\cttlogo.ico"
|
Write-Host "Shortcut to winutil created at: $shortcutPath"
|
||||||
# ConvertTo-Icon -bitmapPath $pngPath -iconPath $icoPath
|
|
||||||
# Write-Host "ICO file created at: $icoPath"
|
|
||||||
# Copy-Item "$env:TEMP\cttlogo.png" "$($scratchDir)\Windows\cttlogo.png" -force
|
|
||||||
# Copy-Item "$env:TEMP\cttlogo.ico" "$($scratchDir)\Windows\cttlogo.ico" -force
|
|
||||||
# $shortcut.IconLocation = "c:\Windows\cttlogo.ico"
|
|
||||||
# }
|
|
||||||
|
|
||||||
# $shortcut.TargetPath = "powershell.exe"
|
|
||||||
# $shortcut.Arguments = "-NoProfile -ExecutionPolicy Bypass -Command `"$command`""
|
|
||||||
# $shortcut.Save()
|
|
||||||
# Write-Host "Shortcut to winutil created at: $shortcutPath"
|
|
||||||
# *************************** Automation black ***************************
|
# *************************** Automation black ***************************
|
||||||
|
|
||||||
Write-Host "Copy checkinstall.cmd into the ISO"
|
Write-Host "Copy checkinstall.cmd into the ISO"
|
||||||
@ -311,19 +267,6 @@ public class PowerManagement {
|
|||||||
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "Pinned" /f >$null 2>&1
|
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "Pinned" /f >$null 2>&1
|
||||||
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "LayoutCycle" /f >$null 2>&1
|
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "LayoutCycle" /f >$null 2>&1
|
||||||
Write-Host "Edge icon removed from taskbar"
|
Write-Host "Edge icon removed from taskbar"
|
||||||
if (Test-Path "HKLM:\zSOFTWARE\WOW6432Node")
|
|
||||||
{
|
|
||||||
# Remove leftovers of 64-bit installations
|
|
||||||
# ---
|
|
||||||
# Remove registry values first...
|
|
||||||
reg delete "HKLM\zSOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /va /f > $null 2>&1
|
|
||||||
reg delete "HKLM\zSOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge Update" /va /f > $null 2>&1
|
|
||||||
reg delete "HKLM\zSOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft EdgeWebView" /va /f > $null 2>&1
|
|
||||||
# ...then the registry keys
|
|
||||||
reg delete "HKLM\zSOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /f > $null 2>&1
|
|
||||||
reg delete "HKLM\zSOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge Update" /f > $null 2>&1
|
|
||||||
reg delete "HKLM\zSOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft EdgeWebView" /f > $null 2>&1
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
reg add "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
|
reg add "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f
|
||||||
@ -392,7 +335,7 @@ public class PowerManagement {
|
|||||||
if (Test-Path $driverPath)
|
if (Test-Path $driverPath)
|
||||||
{
|
{
|
||||||
Write-Host "Adding Windows Drivers image($scratchDir) drivers($driverPath) "
|
Write-Host "Adding Windows Drivers image($scratchDir) drivers($driverPath) "
|
||||||
dism /English /image:$scratchDir /add-driver /driver:$driverPath /recurse | Out-Host
|
Add-WindowsDriver -Path "$scratchDir" -Driver "$driverPath" -Recurse
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
43
functions/public/Invoke-WPFOOSU
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
function Invoke-WPFOOSU {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Downloads and runs OO Shutup 10 with or without config files
|
||||||
|
.PARAMETER action
|
||||||
|
Specifies how OOSU should be started
|
||||||
|
customize: Opens the OOSU GUI
|
||||||
|
recommended: Loads and applies the recommended OOSU policies silently
|
||||||
|
undo: Resets all policies to factory silently
|
||||||
|
#>
|
||||||
|
|
||||||
|
param (
|
||||||
|
[ValidateSet("customize", "recommended", "undo")]
|
||||||
|
[string]$action
|
||||||
|
)
|
||||||
|
|
||||||
|
$OOSU_filepath = "$ENV:temp\OOSU10.exe"
|
||||||
|
|
||||||
|
$Initial_ProgressPreference = $ProgressPreference
|
||||||
|
$ProgressPreference = "SilentlyContinue" # Disables the Progress Bar to drasticly speed up Invoke-WebRequest
|
||||||
|
Invoke-WebRequest -Uri "https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe" -OutFile $OOSU_filepath
|
||||||
|
|
||||||
|
switch ($action)
|
||||||
|
{
|
||||||
|
"customize"{
|
||||||
|
Write-Host "Starting OO Shutup 10 ..."
|
||||||
|
Start-Process $OOSU_filepath
|
||||||
|
}
|
||||||
|
"recommended"{
|
||||||
|
$oosu_config = "$ENV:temp\ooshutup10_recommended.cfg"
|
||||||
|
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/ChrisTitusTech/winutil/main/config/ooshutup10_recommended.cfg" -OutFile $oosu_config
|
||||||
|
Write-Host "Applying recommended OO Shutup 10 Policies"
|
||||||
|
Start-Process $OOSU_filepath -ArgumentList "$oosu_config /quiet" -Wait
|
||||||
|
}
|
||||||
|
"undo"{
|
||||||
|
$oosu_config = "$ENV:temp\ooshutup10_factory.cfg"
|
||||||
|
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/ChrisTitusTech/winutil/main/config/ooshutup10_factory.cfg" -OutFile $oosu_config
|
||||||
|
Write-Host "Resetting all OO Shutup 10 Policies"
|
||||||
|
Start-Process $OOSU_filepath -ArgumentList "$oosu_config /quiet" -Wait
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$ProgressPreference = $Initial_ProgressPreference
|
||||||
|
}
|
@ -1,20 +0,0 @@
|
|||||||
function Invoke-WPFOOSU {
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Downloads and runs OO Shutup 10
|
|
||||||
#>
|
|
||||||
try {
|
|
||||||
$OOSU_filepath = "$ENV:temp\OOSU10.exe"
|
|
||||||
$Initial_ProgressPreference = $ProgressPreference
|
|
||||||
$ProgressPreference = "SilentlyContinue" # Disables the Progress Bar to drasticly speed up Invoke-WebRequest
|
|
||||||
Invoke-WebRequest -Uri "https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe" -OutFile $OOSU_filepath
|
|
||||||
Write-Host "Starting OO Shutup 10 ..."
|
|
||||||
Start-Process $OOSU_filepath
|
|
||||||
}
|
|
||||||
catch {
|
|
||||||
Write-Host "Error Downloading and Running OO Shutup 10" -ForegroundColor Red
|
|
||||||
}
|
|
||||||
finally {
|
|
||||||
$ProgressPreference = $Initial_ProgressPreference
|
|
||||||
}
|
|
||||||
}
|
|
@ -5,8 +5,6 @@ function Invoke-WPFPanelAutologin {
|
|||||||
Enables autologin using Sysinternals Autologon.exe
|
Enables autologin using Sysinternals Autologon.exe
|
||||||
|
|
||||||
#>
|
#>
|
||||||
|
curl.exe -ss "https://live.sysinternals.com/Autologon.exe" -o $env:temp\autologin.exe # Official Microsoft recommendation https://learn.microsoft.com/en-us/sysinternals/downloads/autologon
|
||||||
# Official Microsoft recommendation: https://learn.microsoft.com/en-us/sysinternals/downloads/autologon
|
cmd /c $env:temp\autologin.exe /accepteula
|
||||||
Invoke-WebRequest -Uri "https://live.sysinternals.com/Autologon.exe" -OutFile "$env:temp\autologin.exe"
|
|
||||||
cmd /c "$env:temp\autologin.exe" /accepteula
|
|
||||||
}
|
}
|
@ -17,26 +17,18 @@ function Invoke-WPFShortcut {
|
|||||||
[bool]$RunAsAdmin = $false
|
[bool]$RunAsAdmin = $false
|
||||||
)
|
)
|
||||||
|
|
||||||
# add an a Custom Icon if it's available at "$env:TEMP\cttlogo.png", else don't add a Custom Icon.
|
# Preper the Shortcut Fields and add an a Custom Icon if it's available at "$env:TEMP\cttlogo.png", else don't add a Custom Icon.
|
||||||
$iconPath = $null
|
$iconPath = $null
|
||||||
Switch ($ShortcutToAdd) {
|
Switch ($ShortcutToAdd) {
|
||||||
"WinUtil" {
|
"WinUtil" {
|
||||||
# Use Powershell 7 if installed and fallback to PS5 if not
|
$SourceExe = "$env:SystemRoot\System32\WindowsPowerShell\v1.0\powershell.exe"
|
||||||
if (Get-Command "pwsh" -ErrorAction SilentlyContinue){
|
$IRM = 'irm https://christitus.com/win | iex'
|
||||||
$shell = "pwsh.exe"
|
$Powershell = '-ExecutionPolicy Bypass -Command "Start-Process powershell.exe -verb runas -ArgumentList'
|
||||||
}
|
$ArgumentsToSourceExe = "$powershell '$IRM'"
|
||||||
else{
|
|
||||||
$shell = "powershell.exe"
|
|
||||||
}
|
|
||||||
|
|
||||||
$shellArgs = "-ExecutionPolicy Bypass -Command `"Start-Process $shell -verb runas -ArgumentList `'-Command `"irm https://christitus.com/win | iex`"`'"
|
|
||||||
|
|
||||||
$DestinationName = "WinUtil.lnk"
|
$DestinationName = "WinUtil.lnk"
|
||||||
|
|
||||||
Invoke-WebRequest -Uri "https://christitus.com/images/logo-full.png" -OutFile "$env:TEMP\cttlogo.png"
|
|
||||||
|
|
||||||
if (Test-Path -Path "$env:TEMP\cttlogo.png") {
|
if (Test-Path -Path "$env:TEMP\cttlogo.png") {
|
||||||
$iconPath = "$env:LOCALAPPDATA\winutil\cttlogo.ico"
|
$iconPath = "$env:SystempRoot\cttlogo.ico"
|
||||||
ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath $iconPath
|
ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath $iconPath
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -48,23 +40,20 @@ function Invoke-WPFShortcut {
|
|||||||
$FileBrowser.Filter = "Shortcut Files (*.lnk)|*.lnk"
|
$FileBrowser.Filter = "Shortcut Files (*.lnk)|*.lnk"
|
||||||
$FileBrowser.FileName = $DestinationName
|
$FileBrowser.FileName = $DestinationName
|
||||||
|
|
||||||
# Do an Early Return if the Save Operation was canceled by User's Input.
|
# Do an Early Return if The Save Shortcut operation was cancel by User's Input.
|
||||||
$FileBrowserResult = $FileBrowser.ShowDialog()
|
$FileBrowserResult = $FileBrowser.ShowDialog()
|
||||||
$DialogResultEnum = New-Object System.Windows.Forms.DialogResult
|
$DialogResultEnum = New-Object System.Windows.Forms.DialogResult
|
||||||
if (-not ($FileBrowserResult -eq $DialogResultEnum::OK)) {
|
if (-not ($FileBrowserResult -eq $DialogResultEnum::OK)) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
# Prepare the Shortcut paramter
|
|
||||||
$WshShell = New-Object -comObject WScript.Shell
|
$WshShell = New-Object -comObject WScript.Shell
|
||||||
$Shortcut = $WshShell.CreateShortcut($FileBrowser.FileName)
|
$Shortcut = $WshShell.CreateShortcut($FileBrowser.FileName)
|
||||||
$Shortcut.TargetPath = $shell
|
$Shortcut.TargetPath = $SourceExe
|
||||||
$Shortcut.Arguments = $shellArgs
|
$Shortcut.Arguments = $ArgumentsToSourceExe
|
||||||
if ($null -ne $iconPath) {
|
if ($null -ne $iconPath) {
|
||||||
$shortcut.IconLocation = $iconPath
|
$shortcut.IconLocation = $iconPath
|
||||||
}
|
}
|
||||||
|
|
||||||
# Save the Shortcut to disk
|
|
||||||
$Shortcut.Save()
|
$Shortcut.Save()
|
||||||
|
|
||||||
if ($RunAsAdmin -eq $true) {
|
if ($RunAsAdmin -eq $true) {
|
||||||
|
@ -28,9 +28,5 @@ function Invoke-WPFToggle {
|
|||||||
"WPFToggleMouseAcceleration" {Invoke-WinUtilMouseAcceleration $(Get-WinUtilToggleStatus WPFToggleMouseAcceleration)}
|
"WPFToggleMouseAcceleration" {Invoke-WinUtilMouseAcceleration $(Get-WinUtilToggleStatus WPFToggleMouseAcceleration)}
|
||||||
"WPFToggleStickyKeys" {Invoke-WinUtilStickyKeys $(Get-WinUtilToggleStatus WPFToggleStickyKeys)}
|
"WPFToggleStickyKeys" {Invoke-WinUtilStickyKeys $(Get-WinUtilToggleStatus WPFToggleStickyKeys)}
|
||||||
"WPFToggleTaskbarWidgets" {Invoke-WinUtilTaskbarWidgets $(Get-WinUtilToggleStatus WPFToggleTaskbarWidgets)}
|
"WPFToggleTaskbarWidgets" {Invoke-WinUtilTaskbarWidgets $(Get-WinUtilToggleStatus WPFToggleTaskbarWidgets)}
|
||||||
"WPFToggleTaskbarSearch" {Invoke-WinUtilTaskbarSearch $(Get-WinUtilToggleStatus WPFToggleTaskbarSearch)}
|
|
||||||
"WPFToggleTaskView" {Invoke-WinUtilTaskView $(Get-WinUtilToggleStatus WPFToggleTaskView)}
|
|
||||||
"WPFToggleHiddenFiles" {Invoke-WinUtilHiddenFiles $(Get-WinUtilToggleStatus WPFToggleHiddenFiles)}
|
|
||||||
"WPFToggleTaskbarAlignment" {Invoke-WinUtilTaskbarAlignment $(Get-WinUtilToggleStatus WPFToggleTaskbarAlignment)}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,53 +0,0 @@
|
|||||||
function Invoke-WPFTweakPS7{
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
This will edit the config file of the Windows Terminal Replacing the Powershell 5 to Powershell 7 and install Powershell 7 if necessary
|
|
||||||
.PARAMETER action
|
|
||||||
PS7: Configures Powershell 7 to be the default Terminal
|
|
||||||
PS5: Configures Powershell 5 to be the default Terminal
|
|
||||||
#>
|
|
||||||
param (
|
|
||||||
[ValidateSet("PS7", "PS5")]
|
|
||||||
[string]$action
|
|
||||||
)
|
|
||||||
|
|
||||||
switch ($action) {
|
|
||||||
"PS7"{
|
|
||||||
if (Test-Path -Path "$env:ProgramFiles\PowerShell\7") {
|
|
||||||
Write-Host "Powershell 7 is already installed."
|
|
||||||
} else {
|
|
||||||
Write-Host "Installing Powershell 7..."
|
|
||||||
Install-WinUtilProgramWinget -ProgramsToInstall @(@{"winget"="Microsoft.PowerShell"})
|
|
||||||
}
|
|
||||||
$targetTerminalName = "PowerShell"
|
|
||||||
}
|
|
||||||
"PS5"{
|
|
||||||
$targetTerminalName = "Windows PowerShell"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
# Check if the Windows Terminal is installed and return if not (Prerequisite for the following code)
|
|
||||||
if (-not (Get-Command "wt" -ErrorAction SilentlyContinue)){
|
|
||||||
Write-Host "Windows Terminal not installed. Skipping Terminal preference"
|
|
||||||
return
|
|
||||||
}
|
|
||||||
# Check if the Windows Terminal settings.json file exists and return if not (Prereqisite for the following code)
|
|
||||||
$settingsPath = "$env:LOCALAPPDATA\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json"
|
|
||||||
if (-not (Test-Path -Path $settingsPath)){
|
|
||||||
Write-Host "Windows Terminal Settings file not found at $settingsPath"
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Host "Settings file found."
|
|
||||||
$settingsContent = Get-Content -Path $settingsPath | ConvertFrom-Json
|
|
||||||
$ps7Profile = $settingsContent.profiles.list | Where-Object { $_.name -eq $targetTerminalName }
|
|
||||||
if ($ps7Profile) {
|
|
||||||
$settingsContent.defaultProfile = $ps7Profile.guid
|
|
||||||
$updatedSettings = $settingsContent | ConvertTo-Json -Depth 100
|
|
||||||
Set-Content -Path $settingsPath -Value $updatedSettings
|
|
||||||
Write-Host "Default profile updated to " -NoNewline
|
|
||||||
Write-Host "$targetTerminalName " -ForegroundColor White -NoNewline
|
|
||||||
Write-Host "using the name attribute."
|
|
||||||
} else {
|
|
||||||
Write-Host "No PowerShell 7 profile found in Windows Terminal settings using the name attribute."
|
|
||||||
}
|
|
||||||
}
|
|
@ -10,44 +10,69 @@ Function Invoke-WPFUltimatePerformance {
|
|||||||
#>
|
#>
|
||||||
param($State)
|
param($State)
|
||||||
Try{
|
Try{
|
||||||
# Check if Ultimate Performance plan is installed
|
|
||||||
$ultimatePlan = powercfg -list | Select-String -Pattern "Ultimate Performance"
|
if($state -eq "Enabled"){
|
||||||
if($state -eq "Enable"){
|
# Define the name and GUID of the power scheme
|
||||||
if ($ultimatePlan) {
|
$powerSchemeName = "Ultimate Performance"
|
||||||
Write-Host "Ultimate Performance plan is already installed."
|
$powerSchemeGuid = "e9a42b02-d5df-448d-aa00-03f14749eb61"
|
||||||
} else {
|
|
||||||
Write-Host "Installing Ultimate Performance plan..."
|
# Get all power schemes
|
||||||
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
|
$schemes = powercfg /list | Out-String -Stream
|
||||||
Write-Host "> Ultimate Performance plan installed."
|
|
||||||
|
# Check if the power scheme already exists
|
||||||
|
$ultimateScheme = $schemes | Where-Object { $_ -match $powerSchemeName }
|
||||||
|
|
||||||
|
if ($null -eq $ultimateScheme) {
|
||||||
|
Write-Host "Power scheme '$powerSchemeName' not found. Adding..."
|
||||||
|
|
||||||
|
# Add the power scheme
|
||||||
|
powercfg /duplicatescheme $powerSchemeGuid
|
||||||
|
powercfg -attributes SUB_SLEEP 7bc4a2f9-d8fc-4469-b07b-33eb785aaca0 -ATTRIB_HIDE
|
||||||
|
powercfg -setactive $powerSchemeGuid
|
||||||
|
powercfg -change -monitor-timeout-ac 0
|
||||||
|
|
||||||
|
|
||||||
|
Write-Host "Power scheme added successfully."
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
# Set the Ultimate Performance plan as active
|
Write-Host "Power scheme '$powerSchemeName' already exists."
|
||||||
$ultimatePlanGUID = (powercfg -list | Select-String -Pattern "Ultimate Performance").Line.Split()[3]
|
|
||||||
powercfg -setactive $ultimatePlanGUID
|
|
||||||
|
|
||||||
Write-Host "Ultimate Performance plan is now active."
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
elseif($state -eq "Disable"){
|
|
||||||
if ($ultimatePlan) {
|
|
||||||
# Extract the GUID of the Ultimate Performance plan
|
|
||||||
$ultimatePlanGUID = $ultimatePlan.Line.Split()[3]
|
|
||||||
|
|
||||||
# Set a different power plan as active before deleting the Ultimate Performance plan
|
|
||||||
$balancedPlanGUID = (powercfg -list | Select-String -Pattern "Balanced").Line.Split()[3]
|
|
||||||
powercfg -setactive $balancedPlanGUID
|
|
||||||
|
|
||||||
# Delete the Ultimate Performance plan
|
|
||||||
powercfg -delete $ultimatePlanGUID
|
|
||||||
|
|
||||||
Write-Host "Ultimate Performance plan has been uninstalled."
|
|
||||||
Write-Host "> Balanced plan is now active."
|
|
||||||
} else {
|
|
||||||
Write-Host "Ultimate Performance plan is not installed."
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} Catch{
|
elseif($state -eq "Disabled"){
|
||||||
|
# Define the name of the power scheme
|
||||||
|
$powerSchemeName = "Ultimate Performance"
|
||||||
|
|
||||||
|
# Get all power schemes
|
||||||
|
$schemes = powercfg /list | Out-String -Stream
|
||||||
|
|
||||||
|
# Find the scheme to be removed
|
||||||
|
$ultimateScheme = $schemes | Where-Object { $_ -match $powerSchemeName }
|
||||||
|
|
||||||
|
# If the scheme exists, remove it
|
||||||
|
if ($null -ne $ultimateScheme) {
|
||||||
|
# Extract the GUID of the power scheme
|
||||||
|
$guid = ($ultimateScheme -split '\s+')[3]
|
||||||
|
|
||||||
|
if($null -ne $guid){
|
||||||
|
Write-Host "Found power scheme '$powerSchemeName' with GUID $guid. Removing..."
|
||||||
|
|
||||||
|
# Remove the power scheme
|
||||||
|
powercfg /delete $guid
|
||||||
|
|
||||||
|
Write-Host "Power scheme removed successfully."
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-Host "Could not find GUID for power scheme '$powerSchemeName'."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-Host "Power scheme '$powerSchemeName' not found."
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
Catch{
|
||||||
Write-Warning $psitem.Exception.Message
|
Write-Warning $psitem.Exception.Message
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -12,49 +12,31 @@ function Invoke-WPFUnInstall {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
$PackagesToInstall = (Get-WinUtilCheckBoxes)["Install"]
|
$WingetInstall = (Get-WinUtilCheckBoxes)["Install"]
|
||||||
|
|
||||||
if ($PackagesToInstall.Count -eq 0) {
|
if ($wingetinstall.Count -eq 0) {
|
||||||
$WarningMsg = "Please select the program(s) to uninstall"
|
$WarningMsg = "Please select the program(s) to install"
|
||||||
[System.Windows.MessageBox]::Show($WarningMsg, $AppTitle, [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
[System.Windows.MessageBox]::Show($WarningMsg, $AppTitle, [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
$ButtonType = [System.Windows.MessageBoxButton]::YesNo
|
$ButtonType = [System.Windows.MessageBoxButton]::YesNo
|
||||||
$MessageboxTitle = "Are you sure?"
|
$MessageboxTitle = "Are you sure?"
|
||||||
$Messageboxbody = ("This will uninstall the following applications: `n $($PackagesToInstall | Format-Table | Out-String)")
|
$Messageboxbody = ("This will uninstall the following applications: `n $WingetInstall")
|
||||||
$MessageIcon = [System.Windows.MessageBoxImage]::Information
|
$MessageIcon = [System.Windows.MessageBoxImage]::Information
|
||||||
|
|
||||||
$confirm = [System.Windows.MessageBox]::Show($Messageboxbody, $MessageboxTitle, $ButtonType, $MessageIcon)
|
$confirm = [System.Windows.MessageBox]::Show($Messageboxbody, $MessageboxTitle, $ButtonType, $MessageIcon)
|
||||||
|
|
||||||
if($confirm -eq "No"){return}
|
if($confirm -eq "No"){return}
|
||||||
|
|
||||||
Invoke-WPFRunspace -ArgumentList $PackagesToInstall -DebugPreference $DebugPreference -ScriptBlock {
|
Invoke-WPFRunspace -ArgumentList $WingetInstall -DebugPreference $DebugPreference -ScriptBlock {
|
||||||
param($PackagesToInstall, $DebugPreference)
|
param($WingetInstall, $DebugPreference)
|
||||||
$packagesWinget, $packagesChoco = {
|
|
||||||
$packagesWinget = [System.Collections.Generic.List`1[System.Object]]::new()
|
|
||||||
$packagesChoco = [System.Collections.Generic.List`1[System.Object]]::new()
|
|
||||||
foreach ($package in $PackagesToInstall) {
|
|
||||||
if ($package.winget -eq "na") {
|
|
||||||
$packagesChoco.add($package)
|
|
||||||
Write-Host "Queueing $($package.choco) for Chocolatey Uninstall"
|
|
||||||
} else {
|
|
||||||
$packagesWinget.add($package)
|
|
||||||
Write-Host "Queueing $($package.winget) for Winget Uninstall"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $packagesWinget, $packagesChoco
|
|
||||||
}.Invoke($PackagesToInstall)
|
|
||||||
try{
|
try{
|
||||||
$sync.ProcessRunning = $true
|
$sync.ProcessRunning = $true
|
||||||
|
|
||||||
# Install all selected programs in new window
|
# Install all selected programs in new window
|
||||||
if($packagesWinget.Count -gt 0){
|
Install-WinUtilProgramWinget -ProgramsToInstall $WingetInstall -Manage "Uninstalling"
|
||||||
Install-WinUtilProgramWinget -ProgramsToInstall $packagesWinget -Manage "Uninstalling"
|
|
||||||
}
|
|
||||||
if($packagesChoco.Count -gt 0){
|
|
||||||
Install-WinUtilProgramChoco -ProgramsToInstall $packagesChoco -Manage "Uninstalling"
|
|
||||||
}
|
|
||||||
|
|
||||||
$ButtonType = [System.Windows.MessageBoxButton]::OK
|
$ButtonType = [System.Windows.MessageBoxButton]::OK
|
||||||
$MessageboxTitle = "Uninstalls are Finished "
|
$MessageboxTitle = "Uninstalls are Finished "
|
||||||
@ -69,7 +51,7 @@ function Invoke-WPFUnInstall {
|
|||||||
}
|
}
|
||||||
Catch {
|
Catch {
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
Write-Host "Error: $_"
|
Write-Host "-- Winget failed to install ---"
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
}
|
}
|
||||||
$sync.ProcessRunning = $False
|
$sync.ProcessRunning = $False
|
||||||
|
44
mkdocs.yml
@ -1,44 +0,0 @@
|
|||||||
site_name: Chris Titus WinUtil Official Documentation
|
|
||||||
repo_url: https://github.com/ChrisTitusTech/winutil
|
|
||||||
|
|
||||||
nav:
|
|
||||||
- Introduction: 'index.md'
|
|
||||||
- User Guide: 'userguide.md'
|
|
||||||
- Contribute: 'contribute.md'
|
|
||||||
- Updates: 'updates.md'
|
|
||||||
- Known Issues: 'KnownIssues.md'
|
|
||||||
- FAQ: 'faq.md'
|
|
||||||
|
|
||||||
theme:
|
|
||||||
name: material
|
|
||||||
custom_dir: 'overrides'
|
|
||||||
features:
|
|
||||||
- navigation.tabs
|
|
||||||
- navigation.sections
|
|
||||||
- toc.integrate
|
|
||||||
- navigation.top
|
|
||||||
- search.suggest
|
|
||||||
- search.highlight
|
|
||||||
- content.tabs.link
|
|
||||||
- content.code.annotation
|
|
||||||
- content.code.copy
|
|
||||||
language: en
|
|
||||||
logo: assets/favicon.png
|
|
||||||
favicon: assets/favicon.png
|
|
||||||
palette:
|
|
||||||
- media: "(prefers-color-scheme: light)"
|
|
||||||
scheme: default
|
|
||||||
toggle:
|
|
||||||
icon: material/toggle-switch-off-outline
|
|
||||||
name: Switch to dark mode
|
|
||||||
primary: black
|
|
||||||
accent: purple
|
|
||||||
- media: "(prefers-color-scheme: dark)"
|
|
||||||
scheme: slate
|
|
||||||
toggle:
|
|
||||||
icon: material/toggle-switch
|
|
||||||
name: Switch to light mode
|
|
||||||
primary: teal
|
|
||||||
accent: lime
|
|
||||||
markdown_extensions:
|
|
||||||
- admonition
|
|
@ -1,12 +0,0 @@
|
|||||||
{% extends "base.html" %}
|
|
||||||
|
|
||||||
{% block header %}
|
|
||||||
{{ super() }}
|
|
||||||
<div style="color: red; text-align: center; padding: 10px; font-size: 20px;">
|
|
||||||
<strong>Announcement:</strong> This documentation is still in progress.
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block footer %}
|
|
||||||
{# Empty block to override the footer #}
|
|
||||||
{% endblock %}
|
|
Before Width: | Height: | Size: 339 KiB After Width: | Height: | Size: 339 KiB |
177
scripts/main.ps1
@ -10,7 +10,7 @@ $InitialSessionState = [System.Management.Automation.Runspaces.InitialSessionSta
|
|||||||
$InitialSessionState.Variables.Add($hashVars)
|
$InitialSessionState.Variables.Add($hashVars)
|
||||||
|
|
||||||
# Get every private function and add them to the session state
|
# Get every private function and add them to the session state
|
||||||
$functions = (Get-ChildItem function:\).where{$_.name -like "*winutil*" -or $_.name -like "*WPF*"}
|
$functions = Get-ChildItem function:\ | Where-Object {$_.name -like "*winutil*" -or $_.name -like "*WPF*"}
|
||||||
foreach ($function in $functions){
|
foreach ($function in $functions){
|
||||||
$functionDefinition = Get-Content function:\$($function.name)
|
$functionDefinition = Get-Content function:\$($function.name)
|
||||||
$functionEntry = New-Object System.Management.Automation.Runspaces.SessionStateFunctionEntry -ArgumentList $($function.name), $functionDefinition
|
$functionEntry = New-Object System.Management.Automation.Runspaces.SessionStateFunctionEntry -ArgumentList $($function.name), $functionDefinition
|
||||||
@ -70,16 +70,15 @@ $inputXML = Set-WinUtilUITheme -inputXML $inputXML -themeName $ctttheme
|
|||||||
|
|
||||||
# Read the XAML file
|
# Read the XAML file
|
||||||
$reader = (New-Object System.Xml.XmlNodeReader $xaml)
|
$reader = (New-Object System.Xml.XmlNodeReader $xaml)
|
||||||
try {
|
try { $sync["Form"] = [Windows.Markup.XamlReader]::Load( $reader ) }
|
||||||
$sync["Form"] = [Windows.Markup.XamlReader]::Load( $reader )
|
catch [System.Management.Automation.MethodInvocationException] {
|
||||||
} catch [System.Management.Automation.MethodInvocationException] {
|
|
||||||
Write-Warning "We ran into a problem with the XAML code. Check the syntax for this control..."
|
Write-Warning "We ran into a problem with the XAML code. Check the syntax for this control..."
|
||||||
Write-Host $error[0].Exception.Message -ForegroundColor Red
|
Write-Host $error[0].Exception.Message -ForegroundColor Red
|
||||||
|
|
||||||
If ($error[0].Exception.Message -like "*button*") {
|
If ($error[0].Exception.Message -like "*button*") {
|
||||||
write-warning "Ensure your <button in the `$inputXML does NOT have a Click=ButtonClick property. PS can't handle this`n`n`n`n"
|
write-warning "Ensure your <button in the `$inputXML does NOT have a Click=ButtonClick property. PS can't handle this`n`n`n`n"
|
||||||
}
|
}
|
||||||
} catch {
|
}
|
||||||
|
catch {
|
||||||
Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
|
Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -134,17 +133,9 @@ $sync.keys | ForEach-Object {
|
|||||||
|
|
||||||
# Load computer information in the background
|
# Load computer information in the background
|
||||||
Invoke-WPFRunspace -ScriptBlock {
|
Invoke-WPFRunspace -ScriptBlock {
|
||||||
try{
|
|
||||||
$oldProgressPreference = $ProgressPreference
|
|
||||||
$ProgressPreference = "SilentlyContinue"
|
|
||||||
$sync.ConfigLoaded = $False
|
$sync.ConfigLoaded = $False
|
||||||
$sync.ComputerInfo = Get-ComputerInfo
|
$sync.ComputerInfo = Get-ComputerInfo
|
||||||
$sync.ConfigLoaded = $True
|
$sync.ConfigLoaded = $True
|
||||||
}
|
|
||||||
finally{
|
|
||||||
$ProgressPreference = "Continue"
|
|
||||||
}
|
|
||||||
|
|
||||||
} | Out-Null
|
} | Out-Null
|
||||||
|
|
||||||
#===========================================================================
|
#===========================================================================
|
||||||
@ -154,6 +145,9 @@ Invoke-WPFRunspace -ScriptBlock {
|
|||||||
# Print the logo
|
# Print the logo
|
||||||
Invoke-WPFFormVariables
|
Invoke-WPFFormVariables
|
||||||
|
|
||||||
|
# Check if Chocolatey is installed
|
||||||
|
Install-WinUtilChoco
|
||||||
|
|
||||||
# Set the titlebar
|
# Set the titlebar
|
||||||
$sync["Form"].title = $sync["Form"].title + " " + $sync.version
|
$sync["Form"].title = $sync["Form"].title + " " + $sync.version
|
||||||
# Set the commands that will run when the form is closed
|
# Set the commands that will run when the form is closed
|
||||||
@ -164,9 +158,9 @@ $sync["Form"].Add_Closing({
|
|||||||
})
|
})
|
||||||
|
|
||||||
# Attach the event handler to the Click event
|
# Attach the event handler to the Click event
|
||||||
$sync.SearchBarClearButton.Add_Click({
|
$sync.CheckboxFilterClear.Add_Click({
|
||||||
$sync.SearchBar.Text = ""
|
$sync.CheckboxFilter.Text = ""
|
||||||
$sync.SearchBarClearButton.Visibility = "Collapsed"
|
$sync.CheckboxFilterClear.Visibility = "Collapsed"
|
||||||
})
|
})
|
||||||
|
|
||||||
# add some shortcuts for people that don't like clicking
|
# add some shortcuts for people that don't like clicking
|
||||||
@ -177,9 +171,9 @@ $commonKeyEvents = {
|
|||||||
|
|
||||||
if ($_.Key -eq "Escape")
|
if ($_.Key -eq "Escape")
|
||||||
{
|
{
|
||||||
$sync.SearchBar.SelectAll()
|
$sync.CheckboxFilter.SelectAll()
|
||||||
$sync.SearchBar.Text = ""
|
$sync.CheckboxFilter.Text = ""
|
||||||
$sync.SearchBarClearButton.Visibility = "Collapsed"
|
$sync.CheckboxFilterClear.Visibility = "Collapsed"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -210,11 +204,11 @@ $commonKeyEvents = {
|
|||||||
}
|
}
|
||||||
# shortcut for the filter box
|
# shortcut for the filter box
|
||||||
if ($_.Key -eq "F" -and $_.KeyboardDevice.Modifiers -eq "Ctrl") {
|
if ($_.Key -eq "F" -and $_.KeyboardDevice.Modifiers -eq "Ctrl") {
|
||||||
if ($sync.SearchBar.Text -eq "Ctrl-F to filter") {
|
if ($sync.CheckboxFilter.Text -eq "Ctrl-F to filter") {
|
||||||
$sync.SearchBar.SelectAll()
|
$sync.CheckboxFilter.SelectAll()
|
||||||
$sync.SearchBar.Text = ""
|
$sync.CheckboxFilter.Text = ""
|
||||||
}
|
}
|
||||||
$sync.SearchBar.Focus()
|
$sync.CheckboxFilter.Focus()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -277,48 +271,26 @@ Add-Type @"
|
|||||||
"@
|
"@
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($proc in (Get-Process).where{ $_.MainWindowTitle -and $_.MainWindowTitle -like "*titus*" }) {
|
foreach ($proc in (Get-Process | Where-Object { $_.MainWindowTitle -and $_.MainWindowTitle -like "*titus*" })) {
|
||||||
# Check if the process's MainWindowHandle is valid
|
if ($proc.Id -ne [System.IntPtr]::Zero) {
|
||||||
if ($proc.MainWindowHandle -ne [System.IntPtr]::Zero) {
|
|
||||||
Write-Debug "MainWindowHandle: $($proc.Id) $($proc.MainWindowTitle) $($proc.MainWindowHandle)"
|
Write-Debug "MainWindowHandle: $($proc.Id) $($proc.MainWindowTitle) $($proc.MainWindowHandle)"
|
||||||
$windowHandle = $proc.MainWindowHandle
|
$windowHandle = $proc.MainWindowHandle
|
||||||
} else {
|
|
||||||
Write-Warning "Process found, but no MainWindowHandle: $($proc.Id) $($proc.MainWindowTitle)"
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# need to experiemnt more
|
||||||
# Using a TaskbarItem Overlay until someone figures out how to replace the icon correctly
|
# setting icon for the windows is still not working
|
||||||
|
# $pngUrl = "https://christitus.com/images/logo-full.png"
|
||||||
# URL of the image
|
# $pngPath = "$env:TEMP\cttlogo.png"
|
||||||
$imageUrl = "https://christitus.com/images/logo-full.png"
|
# $iconPath = "$env:TEMP\cttlogo.ico"
|
||||||
|
# # Download the PNG file
|
||||||
# Download the image
|
# Invoke-WebRequest -Uri $pngUrl -OutFile $pngPath
|
||||||
$imagePath = "$env:TEMP\logo-full.png"
|
# if (Test-Path -Path $pngPath) {
|
||||||
Invoke-WebRequest -Uri $imageUrl -OutFile $imagePath
|
# ConvertTo-Icon -bitmapPath $pngPath -iconPath $iconPath
|
||||||
|
# }
|
||||||
# Read the image file as a byte array
|
# $icon = [System.Drawing.Icon]::ExtractAssociatedIcon($iconPath)
|
||||||
$imageBytes = [System.IO.File]::ReadAllBytes($imagePath)
|
# Write-Host $icon.Handle
|
||||||
|
# [Window]::SendMessage($windowHandle, 0x80, [IntPtr]::Zero, $icon.Handle)
|
||||||
# Convert the byte array to a Base64 string
|
|
||||||
$base64String = [System.Convert]::ToBase64String($imageBytes)
|
|
||||||
|
|
||||||
# Create a streaming image by streaming the base64 string to a bitmap streamsource
|
|
||||||
$bitmap = New-Object System.Windows.Media.Imaging.BitmapImage
|
|
||||||
$bitmap.BeginInit()
|
|
||||||
$bitmap.StreamSource = [System.IO.MemoryStream][System.Convert]::FromBase64String($base64String)
|
|
||||||
$bitmap.EndInit()
|
|
||||||
$bitmap.Freeze()
|
|
||||||
|
|
||||||
# Ensure TaskbarItemInfo is created if not already
|
|
||||||
if (-not $sync["Form"].TaskbarItemInfo) {
|
|
||||||
$sync["Form"].TaskbarItemInfo = New-Object System.Windows.Shell.TaskbarItemInfo
|
|
||||||
}
|
|
||||||
|
|
||||||
# Set the overlay icon for the taskbar
|
|
||||||
$sync["Form"].TaskbarItemInfo.Overlay = $bitmap
|
|
||||||
|
|
||||||
|
|
||||||
$rect = New-Object RECT
|
$rect = New-Object RECT
|
||||||
[Window]::GetWindowRect($windowHandle, [ref]$rect)
|
[Window]::GetWindowRect($windowHandle, [ref]$rect)
|
||||||
@ -391,26 +363,17 @@ Add-Type @"
|
|||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
# Load Checkboxes and Labels outside of the Filter function only once on startup for performance reasons
|
$sync["CheckboxFilter"].Add_TextChanged({
|
||||||
$filter = Get-WinUtilVariables -Type CheckBox
|
|
||||||
$CheckBoxes = ($sync.GetEnumerator()).where{ $psitem.Key -in $filter }
|
|
||||||
|
|
||||||
$filter = Get-WinUtilVariables -Type Label
|
if ($sync.CheckboxFilter.Text -ne "") {
|
||||||
$labels = @{}
|
$sync.CheckboxFilterClear.Visibility = "Visible"
|
||||||
($sync.GetEnumerator()).where{$PSItem.Key -in $filter} | ForEach-Object {$labels[$_.Key] = $_.Value}
|
|
||||||
|
|
||||||
$allCategories = $checkBoxes.Name | ForEach-Object {$sync.configs.applications.$_} | Select-Object -Unique -ExpandProperty category
|
|
||||||
|
|
||||||
$sync["SearchBar"].Add_TextChanged({
|
|
||||||
|
|
||||||
if ($sync.SearchBar.Text -ne "") {
|
|
||||||
$sync.SearchBarClearButton.Visibility = "Visible"
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$sync.SearchBarClearButton.Visibility = "Collapsed"
|
$sync.CheckboxFilterClear.Visibility = "Collapsed"
|
||||||
}
|
}
|
||||||
|
|
||||||
$activeApplications = @()
|
$filter = Get-WinUtilVariables -Type CheckBox
|
||||||
|
$CheckBoxes = $sync.GetEnumerator() | Where-Object { $psitem.Key -in $filter }
|
||||||
|
|
||||||
foreach ($CheckBox in $CheckBoxes) {
|
foreach ($CheckBox in $CheckBoxes) {
|
||||||
# Check if the checkbox is null or if it doesn't have content
|
# Check if the checkbox is null or if it doesn't have content
|
||||||
@ -418,7 +381,7 @@ $sync["SearchBar"].Add_TextChanged({
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
$textToSearch = $sync.SearchBar.Text.ToLower()
|
$textToSearch = $sync.CheckboxFilter.Text.ToLower()
|
||||||
$checkBoxName = $CheckBox.Key
|
$checkBoxName = $CheckBox.Key
|
||||||
$textBlockName = $checkBoxName + "Link"
|
$textBlockName = $checkBoxName + "Link"
|
||||||
|
|
||||||
@ -427,7 +390,6 @@ $sync["SearchBar"].Add_TextChanged({
|
|||||||
|
|
||||||
if ($CheckBox.Value.Content.ToLower().Contains($textToSearch)) {
|
if ($CheckBox.Value.Content.ToLower().Contains($textToSearch)) {
|
||||||
$CheckBox.Value.Visibility = "Visible"
|
$CheckBox.Value.Visibility = "Visible"
|
||||||
$activeApplications += $sync.configs.applications.$checkboxName
|
|
||||||
# Set the corresponding text block visibility
|
# Set the corresponding text block visibility
|
||||||
if ($textBlock -ne $null) {
|
if ($textBlock -ne $null) {
|
||||||
$textBlock.Visibility = "Visible"
|
$textBlock.Visibility = "Visible"
|
||||||
@ -441,21 +403,7 @@ $sync["SearchBar"].Add_TextChanged({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$activeCategories = $activeApplications | Select-Object -ExpandProperty category -Unique
|
|
||||||
|
|
||||||
foreach ($category in $activeCategories){
|
|
||||||
$label = $labels[$(Get-WPFObjectName -type "Label" -name $category)]
|
|
||||||
$label.Visibility = "Visible"
|
|
||||||
}
|
|
||||||
if ($activeCategories){
|
|
||||||
$inactiveCategories = Compare-Object -ReferenceObject $allCategories -DifferenceObject $activeCategories -PassThru
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
$inactiveCategories = $allCategories
|
|
||||||
}
|
|
||||||
foreach ($category in $inactiveCategories){
|
|
||||||
$label = $labels[$(Get-WPFObjectName -type "Label" -name $category)]
|
|
||||||
$label.Visibility = "Collapsed"}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
# Define event handler for button click
|
# Define event handler for button click
|
||||||
@ -491,46 +439,17 @@ $sync["AboutMenuItem"].Add_Click({
|
|||||||
# Handle Export menu item click
|
# Handle Export menu item click
|
||||||
Write-Debug "About clicked"
|
Write-Debug "About clicked"
|
||||||
$sync["SettingsPopup"].IsOpen = $false
|
$sync["SettingsPopup"].IsOpen = $false
|
||||||
|
# Example usage
|
||||||
$authorInfo = @"
|
$authorInfo = @"
|
||||||
Author : <a href="https://github.com/ChrisTitusTech">@christitustech</a>
|
Author : @christitustech
|
||||||
Runspace : <a href="https://github.com/DeveloperDurp">@DeveloperDurp</a>
|
Runspace : @DeveloperDurp
|
||||||
MicroWin : <a href="https://github.com/KonTy">@KonTy</a>
|
GUI : @KonTy
|
||||||
GitHub : <a href="https://github.com/ChrisTitusTech/winutil">ChrisTitusTech/winutil</a>
|
MicroWin : @KonTy
|
||||||
Version : <a href="https://github.com/ChrisTitusTech/winutil/releases/tag/$($sync.version)">$($sync.version)</a>
|
GitHub : https://github.com/ChrisTitusTech/winutil
|
||||||
|
Version : $($sync.version)
|
||||||
"@
|
"@
|
||||||
$FontSize = $sync.configs.themes.$ctttheme.CustomDialogFontSize
|
Show-CustomDialog -Message $authorInfo -Width 400
|
||||||
$HeaderFontSize = $sync.configs.themes.$ctttheme.CustomDialogFontSizeHeader
|
|
||||||
$IconSize = $sync.configs.themes.$ctttheme.CustomDialogIconSize
|
|
||||||
$Width = $sync.configs.themes.$ctttheme.CustomDialogWidth
|
|
||||||
$Height = $sync.configs.themes.$ctttheme.CustomDialogHeight
|
|
||||||
Show-CustomDialog -Message $authorInfo -Width $Width -Height $Height -FontSize $FontSize -HeaderFontSize $HeaderFontSize -IconSize $IconSize
|
|
||||||
})
|
})
|
||||||
|
|
||||||
$sync["SponsorMenuItem"].Add_Click({
|
|
||||||
# Handle Export menu item click
|
|
||||||
Write-Debug "Sponsors clicked"
|
|
||||||
$sync["SettingsPopup"].IsOpen = $false
|
|
||||||
$authorInfo = @"
|
|
||||||
<a href="https://github.com/sponsors/ChrisTitusTech">Current sponsors for ChrisTitusTech:</a>
|
|
||||||
"@
|
|
||||||
$authorInfo += "`n"
|
|
||||||
try {
|
|
||||||
# Call the function to get the sponsors
|
|
||||||
$sponsors = Invoke-WinUtilSponsors
|
|
||||||
|
|
||||||
# Append the sponsors to the authorInfo
|
|
||||||
$sponsors | ForEach-Object { $authorInfo += "$_`n" }
|
|
||||||
}
|
|
||||||
catch {
|
|
||||||
$authorInfo += "An error occurred while fetching or processing the sponsors: $_`n"
|
|
||||||
}
|
|
||||||
|
|
||||||
$FontSize = $sync.configs.themes.$ctttheme.CustomDialogFontSize
|
|
||||||
$HeaderFontSize = $sync.configs.themes.$ctttheme.CustomDialogFontSizeHeader
|
|
||||||
$IconSize = $sync.configs.themes.$ctttheme.CustomDialogIconSize
|
|
||||||
$Width = $sync.configs.themes.$ctttheme.CustomDialogWidth
|
|
||||||
$Height = $sync.configs.themes.$ctttheme.CustomDialogHeight
|
|
||||||
Show-CustomDialog -Message $authorInfo -Width $Width -Height $Height -FontSize $FontSize -HeaderFontSize $HeaderFontSize -IconSize $IconSize -EnableScroll $true
|
|
||||||
})
|
|
||||||
$sync["Form"].ShowDialog() | out-null
|
$sync["Form"].ShowDialog() | out-null
|
||||||
Stop-Transcript
|
Stop-Transcript
|
||||||
|
@ -44,8 +44,17 @@ $sync.version = "#{replaceme}"
|
|||||||
$sync.configs = @{}
|
$sync.configs = @{}
|
||||||
$sync.ProcessRunning = $false
|
$sync.ProcessRunning = $false
|
||||||
|
|
||||||
# If script isn't running as admin, show error message and quit
|
$currentPid = [System.Security.Principal.WindowsIdentity]::GetCurrent()
|
||||||
If (([Security.Principal.WindowsIdentity]::GetCurrent()).Owner.Value -ne "S-1-5-32-544")
|
$principal = new-object System.Security.Principal.WindowsPrincipal($currentPid)
|
||||||
|
$adminRole=[System.Security.Principal.WindowsBuiltInRole]::Administrator
|
||||||
|
|
||||||
|
|
||||||
|
if ($principal.IsInRole($adminRole))
|
||||||
|
{
|
||||||
|
$Host.UI.RawUI.WindowTitle = $myInvocation.MyCommand.Definition + "(Admin)"
|
||||||
|
clear-host
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
Write-Host "===========================================" -Foregroundcolor Red
|
Write-Host "===========================================" -Foregroundcolor Red
|
||||||
Write-Host "-- Scripts must be run as Administrator ---" -Foregroundcolor Red
|
Write-Host "-- Scripts must be run as Administrator ---" -Foregroundcolor Red
|
||||||
@ -53,7 +62,3 @@ If (([Security.Principal.WindowsIdentity]::GetCurrent()).Owner.Value -ne "S-1-5-
|
|||||||
Write-Host "===========================================" -Foregroundcolor Red
|
Write-Host "===========================================" -Foregroundcolor Red
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
# Set PowerShell window title
|
|
||||||
$Host.UI.RawUI.WindowTitle = $myInvocation.MyCommand.Definition + "(Admin)"
|
|
||||||
clear-host
|
|
||||||
|
83
wiki/Battery.md
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
# Battery drains too fast.
|
||||||
|
When your battery on teh laptop drains too fast please perform these steps and report the results back to Winutil community.
|
||||||
|
|
||||||
|
1. **Check Battery Health:**
|
||||||
|
- Open a Command Prompt as an administrator.
|
||||||
|
- Run the following command to generate a battery report:
|
||||||
|
```powershell
|
||||||
|
powercfg /batteryreport /output "C:\battery_report.html"
|
||||||
|
```
|
||||||
|
- Open the generated HTML report to review information about battery health and usage.
|
||||||
|
|
||||||
|
2. **Review Power Settings:**
|
||||||
|
- Go to "Settings" > "System" > "Power & sleep."
|
||||||
|
- Adjust power plan settings based on your preferences and usage patterns.
|
||||||
|
- Click on "Additional power settings" to access advanced power settings.
|
||||||
|
|
||||||
|
3. **Identify Power-Hungry Apps:**
|
||||||
|
- Right-click on the taskbar and select "Task Manager."
|
||||||
|
- Navigate to the "Processes" tab to identify applications with high CPU or memory usage.
|
||||||
|
- Consider closing unnecessary background applications.
|
||||||
|
|
||||||
|
4. **Update Drivers:**
|
||||||
|
- Visit your laptop manufacturer's website or use Windows Update to check for driver updates.
|
||||||
|
- Ensure graphics, chipset, and other essential drivers are up to date.
|
||||||
|
|
||||||
|
5. **Check for Windows Updates:**
|
||||||
|
- Go to "Settings" > "Update & Security" > "Windows Update."
|
||||||
|
- Check for and install any available updates for your operating system.
|
||||||
|
|
||||||
|
6. **Reduce Screen Brightness:**
|
||||||
|
- Adjust screen brightness based on your preferences and lighting conditions.
|
||||||
|
- Go to "Settings" > "System" > "Display" to adjust brightness.
|
||||||
|
|
||||||
|
7. **Battery Saver Mode:**
|
||||||
|
- Go to "Settings" > "System" > "Battery."
|
||||||
|
- Turn on "Battery saver" to limit background activity and conserve power.
|
||||||
|
|
||||||
|
8. **Check Power Usage in Settings:**
|
||||||
|
- Go to "Settings" > "System" > "Battery" > "Battery usage by app."
|
||||||
|
- Review the list of apps and their power usage.
|
||||||
|
|
||||||
|
9. **Check Background Apps:**
|
||||||
|
- Go to "Settings" > "Privacy" > "Background apps."
|
||||||
|
- Disable unnecessary apps running in the background.
|
||||||
|
|
||||||
|
10. **Use Powercfg for Analysis:**
|
||||||
|
- Open a Command Prompt as an administrator.
|
||||||
|
- Run the following command to analyze energy usage and generate a report:
|
||||||
|
```powershell
|
||||||
|
powercfg /energy /output "C:\energy_report.html"
|
||||||
|
```
|
||||||
|
- Open the generated HTML report to identify energy consumption patterns.
|
||||||
|
|
||||||
|
11. **Review Event Viewer:**
|
||||||
|
- Open Event Viewer by searching for it in the Start menu.
|
||||||
|
- Navigate to "Windows Logs" > "System."
|
||||||
|
- Look for events with the source "Power-Troubleshooter" to identify power-related events.
|
||||||
|
|
||||||
|
12. **Check Wake-up Sources:**
|
||||||
|
- Open a Command Prompt as an administrator.
|
||||||
|
- Use the command `powercfg /requests` to identify processes preventing sleep.
|
||||||
|
- Check Task Scheduler for tasks waking up the computer.
|
||||||
|
- Use the command `powercfg /waketimers` to view active wake timers.
|
||||||
|
|
||||||
|
13. **Resource Monitor:**
|
||||||
|
- Open Resource Monitor from the Start menu.
|
||||||
|
- Navigate to the "CPU" tab and identify processes with high CPU usage.
|
||||||
|
|
||||||
|
14. **Windows Settings - Activity History:**
|
||||||
|
- In "Settings," go to "Privacy" > "Activity history."
|
||||||
|
- Turn off "Let Windows collect my activities from this PC."
|
||||||
|
|
||||||
|
15. **Network Adapters:**
|
||||||
|
- Open Device Manager by searching for it in the Start menu.
|
||||||
|
- Locate your network adapter, right-click, and go to "Properties."
|
||||||
|
- Under the "Power Management" tab, uncheck the option that allows the device to wake the computer.
|
||||||
|
|
||||||
|
16. **Review Installed Applications:**
|
||||||
|
- Manually review installed applications by searching for "Add or remove programs" in the Start menu.
|
||||||
|
- Check settings/preferences of individual applications for power-related options.
|
||||||
|
- Uninstall unnecessary or problematic software.
|
||||||
|
|
||||||
|
By following these detailed instructions, you should be able to thoroughly diagnose and address battery drain issues on your Windows laptop. Adjust settings as needed to optimize power management and improve battery life.
|
39
wiki/Error-in-Winutil-MicroWin-during-ISO-mounting,md
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# Troubleshoot errors during Microwin usage
|
||||||
|
|
||||||
|
## Error `0x80041031`
|
||||||
|
|
||||||
|
This error code typically indicates an issue related to Windows Management Instrumentation (WMI). Here are a few steps you can try to resolve the issue:
|
||||||
|
|
||||||
|
1. **Reboot Your Computer:**
|
||||||
|
Sometimes, a simple reboot can resolve temporary issues. Restart your computer and try mounting the ISO again.
|
||||||
|
|
||||||
|
2. **Check for System Corruption:**
|
||||||
|
Run the System File Checker (SFC) utility to scan and repair system files that may be corrupted.
|
||||||
|
```powershell
|
||||||
|
sfc /scannow
|
||||||
|
```
|
||||||
|
|
||||||
|
3. **Update Your System:**
|
||||||
|
Make sure your operating system is up-to-date. Check for Windows updates and install any pending updates.
|
||||||
|
|
||||||
|
4. **Check WMI Service:**
|
||||||
|
Ensure that the Windows Management Instrumentation (WMI) service is running. You can do this through the Services application:
|
||||||
|
- Press `Win + R` to open the Run dialog.
|
||||||
|
- Type `services.msc` and press Enter.
|
||||||
|
- Locate "Windows Management Instrumentation" in the list.
|
||||||
|
- Make sure its status is set to "Running" and the startup type is set to "Automatic."
|
||||||
|
|
||||||
|
5. **Check for Security Software Interference:**
|
||||||
|
Security software can sometimes interfere with WMI operations. Temporarily disable your antivirus or security software and check if the issue persists.
|
||||||
|
|
||||||
|
6. **Event Viewer:**
|
||||||
|
Check the Event Viewer for more detailed error information. Look for entries related to the `80041031` error and check if there are any additional details that can help identify the cause.
|
||||||
|
|
||||||
|
- Press `Win + X` and select "Event Viewer."
|
||||||
|
- Navigate to "Windows Logs" -> "Application" or "System."
|
||||||
|
- Look for entries with the source related to WMI or the application you're using to mount the ISO.
|
||||||
|
|
||||||
|
7. **ISO File Integrity:**
|
||||||
|
Ensure that the ISO file you are trying to mount is not corrupted. Try mounting a different ISO file to see if the issue persists.
|
||||||
|
|
||||||
|
If the problem persists after trying these steps, additional troubleshooting may be required. Consider seeking assistance from Microsoft support or community forums for more specific guidance based on your system configuration and the software you are using to mount the ISO.
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 99 KiB |
42
windev.ps1
@ -1,42 +0,0 @@
|
|||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
This Script is used as a target for the https://christitus.com/windev alias.
|
|
||||||
It queries the latest winget release (no matter if Pre-Release, Draft or Full Release) and invokes It
|
|
||||||
.DESCRIPTION
|
|
||||||
This Script provides a simple way to always start the bleeding edge release even if it's not yet a full release.
|
|
||||||
This function should be run with administrative privileges.
|
|
||||||
Because this way of recursively invoking scripts via Invoke-Expression it might very well happen that AV Programs flag this because it's a common way of mulitstage exploits to run
|
|
||||||
.EXAMPLE
|
|
||||||
irm https://christitus.com/windev | iex
|
|
||||||
OR
|
|
||||||
Run in Admin Powershell > ./windev.ps1
|
|
||||||
#>
|
|
||||||
|
|
||||||
# Function to fetch the latest release tag from the GitHub API
|
|
||||||
function Get-LatestRelease {
|
|
||||||
try {
|
|
||||||
$releases = Invoke-RestMethod -Uri 'https://api.github.com/repos/ChrisTitusTech/winutil/releases'
|
|
||||||
$latestRelease = $releases | Where-Object {$_.prerelease -eq $true} | Select-Object -First 1
|
|
||||||
return $latestRelease.tag_name
|
|
||||||
} catch {
|
|
||||||
Write-Host "Error fetching release data: $_" -ForegroundColor Red
|
|
||||||
return $latestRelease.tag_name
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# Function to redirect to the latest pre-release version
|
|
||||||
function RedirectToLatestPreRelease {
|
|
||||||
$latestRelease = Get-LatestRelease
|
|
||||||
if ($latestRelease) {
|
|
||||||
$url = "https://raw.githubusercontent.com/ChrisTitusTech/winutil/$latestRelease/winutil.ps1"
|
|
||||||
} else {
|
|
||||||
Write-Host 'Unable to determine latest pre-release version.' -ForegroundColor Red
|
|
||||||
Write-Host "Using latest Full Release"
|
|
||||||
$url = "https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1"
|
|
||||||
}
|
|
||||||
Invoke-RestMethod $url | Invoke-Expression
|
|
||||||
}
|
|
||||||
|
|
||||||
# Call the redirect function
|
|
||||||
|
|
||||||
RedirectToLatestPreRelease
|
|
6236
winutil.ps1
1047
xaml/inputApp.xaml
Normal file
43
xaml/inputFeatures.xaml
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="*"/>
|
||||||
|
<ColumnDefinition Width="*"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Border Grid.Row="1" Grid.Column="0">
|
||||||
|
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
||||||
|
<Label Content="Features" FontSize="16"/>
|
||||||
|
<CheckBox Name="WPFFeaturesdotnet" Content="All .Net Framework (2,3,4)" Margin="5,0" ToolTip=".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications."/>
|
||||||
|
<CheckBox Name="WPFFeatureshyperv" Content="HyperV Virtualization" Margin="5,0" ToolTip="Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines."/>
|
||||||
|
<CheckBox Name="WPFFeatureslegacymedia" Content="Legacy Media (WMP, DirectPlay)" Margin="5,0" ToolTip="Enables legacy programs from previous versions of windows"/>
|
||||||
|
<CheckBox Name="WPFFeaturenfs" Content="NFS - Network File System" Margin="5,0" ToolTip="Network File System (NFS) is a mechanism for storing files on a network."/>
|
||||||
|
<CheckBox Name="WPFFeatureEnableSearchSuggestions" Content="Enable Search Box Web Suggestions in Registry(explorer restart)" Margin="5,0" ToolTip="Enables web suggestions when searching using Windows Search."/>
|
||||||
|
<CheckBox Name="WPFFeatureDisableSearchSuggestions" Content="Disable Search Box Web Suggestions in Registry(explorer restart)" Margin="5,0" ToolTip="Disables web suggestions when searching using Windows Search."/>
|
||||||
|
<CheckBox Name="WPFFeatureRegBackup" Content="Enable Daily Registry Backup Task 12.30am" Margin="5,0" ToolTip="Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803."/>
|
||||||
|
<CheckBox Name="WPFFeatureEnableLegacyRecovery" Content="Enable Legacy F8 Boot Recovery" Margin="5,0" ToolTip="Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes."/>
|
||||||
|
<CheckBox Name="WPFFeatureDisableLegacyRecovery" Content="Disable Legacy F8 Boot Recovery" Margin="5,0" ToolTip="Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes."/>
|
||||||
|
<CheckBox Name="WPFFeaturewsl" Content="Windows Subsystem for Linux" Margin="5,0" ToolTip="Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting."/>
|
||||||
|
<CheckBox Name="WPFFeaturesandbox" Content="Windows Sandbox" Margin="5,0" ToolTip="Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation."/>
|
||||||
|
<Button Name="WPFFeatureInstall" Content="Install Features" HorizontalAlignment = "Left" Width="150" Margin="5" Padding="20,5" />
|
||||||
|
<Label Content="Fixes" FontSize="16"/>
|
||||||
|
<Button Name="WPFPanelAutologin" Content="Set Up Autologin" HorizontalAlignment = "Left" Width="300" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFFixesUpdate" Content="Reset Windows Update" HorizontalAlignment = "Left" Width="300" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFFixesNetwork" Content="Reset Network" HorizontalAlignment = "Left" Width="300" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFPanelDISM" Content="System Corruption Scan" HorizontalAlignment = "Left" Width="300" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFFixesWinget" Content="WinGet Reinstall" HorizontalAlignment = "Left" Width="300" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFRunAdobeCCCleanerTool" Content="Remove Adobe Creative Cloud" HorizontalAlignment = "Left" Width="300" Margin="5" Padding="20,5" />
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
|
</Border>
|
||||||
|
<Border Grid.Row="1" Grid.Column="1">
|
||||||
|
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
||||||
|
<Label Content="Legacy Windows Panels" FontSize="16"/>
|
||||||
|
<Button Name="WPFPanelcontrol" Content="Control Panel" HorizontalAlignment = "Left" Width="200" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFPanelnetwork" Content="Network Connections" HorizontalAlignment = "Left" Width="200" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFPanelpower" Content="Power Panel" HorizontalAlignment = "Left" Width="200" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFPanelregion" Content="Region" HorizontalAlignment = "Left" Width="200" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFPanelsound" Content="Sound Settings" HorizontalAlignment = "Left" Width="200" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFPanelsystem" Content="System Properties" HorizontalAlignment = "Left" Width="200" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFPaneluser" Content="User Accounts" HorizontalAlignment = "Left" Width="200" Margin="5" Padding="20,5" />
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
|
</Border>
|
||||||
|
|
101
xaml/inputTweaks.xaml
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="*"/>
|
||||||
|
<ColumnDefinition Width="*"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Border Grid.Row="1" Grid.Column="0">
|
||||||
|
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
||||||
|
<Label Content="Essential Tweaks" FontSize="16"/>
|
||||||
|
<CheckBox Name="WPFTweaksRestorePoint" Content="Create Restore Point" IsChecked="True" Margin="5,0" ToolTip="Creates a restore point at runtime in case a revert is needed from WinUtil modifications"/>
|
||||||
|
<CheckBox Name="WPFTweaksEndTaskOnTaskbar" Content="Enable End Task With Right Click" Margin="5,0" ToolTip="Enables option to end task when right clicking a program in the taskbar"/>
|
||||||
|
<CheckBox Name="WPFTweaksOO" Content="Run OO Shutup" Margin="5,0" ToolTip="Runs OO Shutup and applies the recommended Tweaks. https://www.oo-software.com/en/shutup10"/>
|
||||||
|
<CheckBox Name="WPFTweaksTele" Content="Disable Telemetry" Margin="5,0" ToolTip="Disables Microsoft Telemetry. Note: This will lock many Edge Browser settings. Microsoft spies heavily on you when using the Edge browser."/>
|
||||||
|
<CheckBox Name="WPFTweaksWifi" Content="Disable Wifi-Sense" Margin="5,0" ToolTip="Wifi Sense is a spying service that phones home all nearby scanned wifi networks and your current geo location."/>
|
||||||
|
<CheckBox Name="WPFTweaksAH" Content="Disable Activity History" Margin="5,0" ToolTip="This erases recent docs, clipboard, and run history."/>
|
||||||
|
<CheckBox Name="WPFTweaksDeleteTempFiles" Content="Delete Temporary Files" Margin="5,0" ToolTip="Erases TEMP Folders"/>
|
||||||
|
<CheckBox Name="WPFTweaksDiskCleanup" Content="Run Disk Cleanup" Margin="5,0" ToolTip="Runs Disk Cleanup on Drive C: and removes old Windows Updates."/>
|
||||||
|
<CheckBox Name="WPFTweaksLoc" Content="Disable Location Tracking" Margin="5,0" ToolTip="Disables Location Tracking...DUH!"/>
|
||||||
|
<CheckBox Name="WPFTweaksAdobe" Content="Disable Adobe Services" Margin="5,0" ToolTip="Disables many of the services that come with Adobe and run in the background."/>
|
||||||
|
<CheckBox Name="WPFTweaksHome" Content="Disable Homegroup" Margin="5,0" ToolTip="Disables HomeGroup - HomeGroup is a password-protected home networking service that lets you share your stuff with other PCs that are currently running and connected to your network."/>
|
||||||
|
<CheckBox Name="WPFTweaksStorage" Content="Disable Storage Sense" Margin="5,0" ToolTip="Storage Sense deletes temp files automatically."/>
|
||||||
|
<CheckBox Name="WPFTweaksHiber" Content="Disable Hibernation" Margin="5,0" ToolTip="Hibernation is really meant for laptops as it saves what's in memory before turning the pc off. It really should never be used, but some people are lazy and rely on it. Don't be like Bob. Bob likes hibernation."/>
|
||||||
|
<CheckBox Name="WPFTweaksDVR" Content="Disable GameDVR" Margin="5,0" ToolTip="GameDVR is a Windows App that is a dependency for some Store Games. I've never met someone that likes it, but it's there for the XBOX crowd."/>
|
||||||
|
<CheckBox Name="WPFTweaksTeredo" Content="Disable Teredo" Margin="5,0" ToolTip="Teredo network tunneling is a ipv6 feature that can cause additional latency."/>
|
||||||
|
<CheckBox Name="WPFTweaksServices" Content="Set Services to Manual" Margin="5,0" ToolTip="Turns a bunch of system services to manual that don't need to be running all the time. This is pretty harmless as if the service is needed, it will simply start on demand."/>
|
||||||
|
<Label Content="Advanced Tweaks - CAUTION" FontSize="16"/>
|
||||||
|
<CheckBox Name="WPFTweaksDisplay" Content="Set Display for Performance" Margin="5,0" ToolTip="Sets the system preferences to performance. You can do this manually with sysdm.cpl as well."/>
|
||||||
|
<CheckBox Name="WPFTweaksUTC" Content="Set Time to UTC (Dual Boot)" Margin="5,0" ToolTip="Essential for computers that are dual booting. Fixes the time sync with Linux Systems."/>
|
||||||
|
<CheckBox Name="WPFTweaksDisableNotifications" Content="Disable Notification Tray/Calendar" Margin="5,0" ToolTip="Disables all Notifications INCLUDING Calendar"/>
|
||||||
|
<CheckBox Name="WPFTweaksDeBloat" Content="Remove ALL MS Store Apps - NOT RECOMMENDED" Margin="5,0" ToolTip="USE WITH CAUTION!!!!! This will remove ALL Microsoft store apps other than the essentials to make winget work. Games installed by MS Store ARE INCLUDED!"/>
|
||||||
|
<CheckBox Name="WPFTweaksRemoveCopilot" Content="Disables Microsoft Copilot" Margin="5,0" ToolTip="Disables MS Copilot AI built into Windows since 23H2."/>
|
||||||
|
<CheckBox Name="WPFTweaksRemoveEdge" Content="Remove Microsoft Edge - NOT RECOMMENDED" Margin="5,0" ToolTip="Removes MS Edge when it gets reinstalled by updates."/>
|
||||||
|
<CheckBox Name="WPFTweaksRemoveOnedrive" Content="Remove OneDrive" Margin="5,0" ToolTip="Copies OneDrive files to Default Home Folders and Uninstalls it."/>
|
||||||
|
<CheckBox Name="WPFTweaksRightClickMenu" Content="Set Classic Right-Click Menu " Margin="5,0" ToolTip="Great Windows 11 tweak to bring back good context menus when right clicking things in explorer."/>
|
||||||
|
<CheckBox Name="WPFTweaksEnableipsix" Content="Enable IPv6" Margin="5,0" ToolTip="Enables IPv6."/>
|
||||||
|
<CheckBox Name="WPFTweaksDisableipsix" Content="Disable IPv6" Margin="5,0" ToolTip="Disables IPv6."/>
|
||||||
|
<Button Name="WPFOOSUbutton" Content="Customize OO Shutup Tweaks" HorizontalAlignment = "Left" Width="220" Margin="5" Padding="20,5" />
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,5,0,0">
|
||||||
|
<Label Content="DNS" HorizontalAlignment="Left" VerticalAlignment="Center"/>
|
||||||
|
<ComboBox Name="WPFchangedns" Height="32" Width="186" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="5,5">
|
||||||
|
<ComboBoxItem IsSelected="True" Content="Default"/>
|
||||||
|
<ComboBoxItem Content="DHCP"/>
|
||||||
|
<ComboBoxItem Content="Google"/>
|
||||||
|
<ComboBoxItem Content="Cloudflare"/>
|
||||||
|
<ComboBoxItem Content="Cloudflare_Malware"/>
|
||||||
|
<ComboBoxItem Content="Cloudflare_Malware_Adult"/>
|
||||||
|
<ComboBoxItem Content="Level3"/>
|
||||||
|
<ComboBoxItem Content="Open_DNS"/>
|
||||||
|
<ComboBoxItem Content="Quad9"/>
|
||||||
|
</ComboBox>
|
||||||
|
</StackPanel><Button Name="WPFTweaksbutton" Content="Run Tweaks" HorizontalAlignment = "Left" Width="160" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFUndoall" Content="Undo Selected Tweaks" HorizontalAlignment = "Left" Width="160" Margin="5" Padding="20,5" />
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
|
</Border>
|
||||||
|
<Border Grid.Row="1" Grid.Column="1">
|
||||||
|
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
||||||
|
<Label Content="Customize Preferences" FontSize="16"/>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
||||||
|
<Label Content="Dark Theme" Style="{StaticResource labelfortweaks}" ToolTip="Enable/Disable Dark Mode." />
|
||||||
|
<CheckBox Name="WPFToggleDarkMode" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
||||||
|
<Label Content="Bing Search in Start Menu" Style="{StaticResource labelfortweaks}" ToolTip="If enable then includes web search results from Bing in your Start Menu search." />
|
||||||
|
<CheckBox Name="WPFToggleBingSearch" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
||||||
|
<Label Content="NumLock on Startup" Style="{StaticResource labelfortweaks}" ToolTip="Toggle the Num Lock key state when your computer starts." />
|
||||||
|
<CheckBox Name="WPFToggleNumLock" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
||||||
|
<Label Content="Verbose Logon Messages" Style="{StaticResource labelfortweaks}" ToolTip="Show detailed messages during the login process for troubleshooting and diagnostics." />
|
||||||
|
<CheckBox Name="WPFToggleVerboseLogon" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
||||||
|
<Label Content="Show File Extensions" Style="{StaticResource labelfortweaks}" ToolTip="If enabled then File extensions (e.g., .txt, .jpg) are visible." />
|
||||||
|
<CheckBox Name="WPFToggleShowExt" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
||||||
|
<Label Content="Snap Assist Flyout" Style="{StaticResource labelfortweaks}" ToolTip="If enabled then Snap preview is disabled when maximize button is hovered." />
|
||||||
|
<CheckBox Name="WPFToggleSnapFlyout" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
||||||
|
<Label Content="Mouse Acceleration" Style="{StaticResource labelfortweaks}" ToolTip="If Enabled then Cursor movement is affected by the speed of your physical mouse movements." />
|
||||||
|
<CheckBox Name="WPFToggleMouseAcceleration" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
||||||
|
<Label Content="Sticky Keys" Style="{StaticResource labelfortweaks}" ToolTip="If Enabled then Sticky Keys is activated - Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury." />
|
||||||
|
<CheckBox Name="WPFToggleStickyKeys" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
||||||
|
<Label Content="Taskbar Widgets" Style="{StaticResource labelfortweaks}" ToolTip="If Enabled then Widgets Icon in Taskbar will be shown." />
|
||||||
|
<CheckBox Name="WPFToggleTaskbarWidgets" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<Label Content="Performance Plans" FontSize="16"/>
|
||||||
|
<Button Name="WPFAddUltPerf" Content="Add and Activate Ultimate Performance Profile" HorizontalAlignment = "Left" Width="300" Margin="5" Padding="20,5" />
|
||||||
|
<Button Name="WPFRemoveUltPerf" Content="Remove Ultimate Performance Profile" HorizontalAlignment = "Left" Width="300" Margin="5" Padding="20,5" />
|
||||||
|
<Label Content="Shortcuts" FontSize="16"/>
|
||||||
|
<Button Name="WPFWinUtilShortcut" Content="Create WinUtil Shortcut" HorizontalAlignment = "Left" Width="300" Margin="5" Padding="20,5" />
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
|
</Border>
|
||||||
|
|
@ -49,8 +49,6 @@
|
|||||||
<Style TargetType="Button" x:Key="HoverButtonStyle">
|
<Style TargetType="Button" x:Key="HoverButtonStyle">
|
||||||
<Setter Property="Foreground" Value="{MainForegroundColor}" />
|
<Setter Property="Foreground" Value="{MainForegroundColor}" />
|
||||||
<Setter Property="FontWeight" Value="Normal" />
|
<Setter Property="FontWeight" Value="Normal" />
|
||||||
<Setter Property="FontSize" Value="{ButtonFontSize}" />
|
|
||||||
<Setter Property="TextElement.FontFamily" Value="{ButtonFontFamily}"/>
|
|
||||||
<Setter Property="Background" Value="{MainBackgroundColor}" />
|
<Setter Property="Background" Value="{MainBackgroundColor}" />
|
||||||
<Setter Property="Template">
|
<Setter Property="Template">
|
||||||
<Setter.Value>
|
<Setter.Value>
|
||||||
@ -177,7 +175,6 @@
|
|||||||
|
|
||||||
<!-- TextBlock template -->
|
<!-- TextBlock template -->
|
||||||
<Style TargetType="TextBlock">
|
<Style TargetType="TextBlock">
|
||||||
<Setter Property="FontSize" Value="{FontSize}"/>
|
|
||||||
<Setter Property="Foreground" Value="{LabelboxForegroundColor}"/>
|
<Setter Property="Foreground" Value="{LabelboxForegroundColor}"/>
|
||||||
<Setter Property="Background" Value="{LabelBackgroundColor}"/>
|
<Setter Property="Background" Value="{LabelBackgroundColor}"/>
|
||||||
</Style>
|
</Style>
|
||||||
@ -200,9 +197,7 @@
|
|||||||
BorderBrush="{ButtonBackgroundColor}"
|
BorderBrush="{ButtonBackgroundColor}"
|
||||||
BorderThickness="{ButtonBorderThickness}"
|
BorderThickness="{ButtonBorderThickness}"
|
||||||
CornerRadius="{ButtonCornerRadius}">
|
CornerRadius="{ButtonCornerRadius}">
|
||||||
<ContentPresenter
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"
|
||||||
HorizontalAlignment="Center"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Margin="10,2,10,2"/>
|
Margin="10,2,10,2"/>
|
||||||
</Border>
|
</Border>
|
||||||
</Grid>
|
</Grid>
|
||||||
@ -242,9 +237,7 @@
|
|||||||
<Setter Property="Margin" Value="{ButtonMargin}"/>
|
<Setter Property="Margin" Value="{ButtonMargin}"/>
|
||||||
<Setter Property="Foreground" Value="{ButtonForegroundColor}"/>
|
<Setter Property="Foreground" Value="{ButtonForegroundColor}"/>
|
||||||
<Setter Property="Background" Value="{ButtonBackgroundColor}"/>
|
<Setter Property="Background" Value="{ButtonBackgroundColor}"/>
|
||||||
<Setter Property="Height" Value="{ButtonHeight}"/>
|
<Setter Property="Height" Value="{ToggleButtonHeight}"/>
|
||||||
<Setter Property="Width" Value="{ButtonWidth}"/>
|
|
||||||
<Setter Property="FontSize" Value="{ButtonFontSize}"/>
|
|
||||||
<Setter Property="Template">
|
<Setter Property="Template">
|
||||||
<Setter.Value>
|
<Setter.Value>
|
||||||
<ControlTemplate TargetType="Button">
|
<ControlTemplate TargetType="Button">
|
||||||
@ -273,12 +266,12 @@
|
|||||||
</Setter.Value>
|
</Setter.Value>
|
||||||
</Setter>
|
</Setter>
|
||||||
</Style>
|
</Style>
|
||||||
<Style x:Key="SearchBarClearButtonStyle" TargetType="Button">
|
<Style x:Key="ClearButtonStyle" TargetType="Button">
|
||||||
<Setter Property="FontFamily" Value="Arial"/>
|
<Setter Property="FontFamily" Value="Arial"/>
|
||||||
<Setter Property="FontSize" Value="{SearchBarClearButtonFontSize}"/>
|
<Setter Property="FontSize" Value="14"/>
|
||||||
<Setter Property="Content" Value="X"/>
|
<Setter Property="Content" Value="X"/>
|
||||||
<Setter Property="Height" Value="{SearchBarClearButtonFontSize}"/>
|
<Setter Property="Height" Value="14"/>
|
||||||
<Setter Property="Width" Value="{SearchBarClearButtonFontSize}"/>
|
<Setter Property="Width" Value="14"/>
|
||||||
<Setter Property="Background" Value="Transparent"/>
|
<Setter Property="Background" Value="Transparent"/>
|
||||||
<Setter Property="Foreground" Value="{MainForegroundColor}"/>
|
<Setter Property="Foreground" Value="{MainForegroundColor}"/>
|
||||||
<Setter Property="Padding" Value="0"/>
|
<Setter Property="Padding" Value="0"/>
|
||||||
@ -297,22 +290,22 @@
|
|||||||
<Style TargetType="CheckBox">
|
<Style TargetType="CheckBox">
|
||||||
<Setter Property="Foreground" Value="{MainForegroundColor}"/>
|
<Setter Property="Foreground" Value="{MainForegroundColor}"/>
|
||||||
<Setter Property="Background" Value="{MainBackgroundColor}"/>
|
<Setter Property="Background" Value="{MainBackgroundColor}"/>
|
||||||
<Setter Property="FontSize" Value="{FontSize}" />
|
<!-- <Setter Property="FontSize" Value="15" /> -->
|
||||||
<Setter Property="TextElement.FontFamily" Value="{FontFamily}"/>
|
<!-- <Setter Property="TextElement.FontFamily" Value="Consolas, sans-serif"/> -->
|
||||||
<Setter Property="Template">
|
<Setter Property="Template">
|
||||||
<Setter.Value>
|
<Setter.Value>
|
||||||
<ControlTemplate TargetType="CheckBox">
|
<ControlTemplate TargetType="CheckBox">
|
||||||
<Grid Background="{TemplateBinding Background}" Margin="{CheckBoxMargin}">
|
<Grid Background="{TemplateBinding Background}" Margin="6,0,0,0">
|
||||||
<BulletDecorator Background="Transparent">
|
<BulletDecorator Background="Transparent">
|
||||||
<BulletDecorator.Bullet>
|
<BulletDecorator.Bullet>
|
||||||
<Grid Width="{CheckBoxBulletDecoratorFontSize}" Height="{CheckBoxBulletDecoratorFontSize}">
|
<Grid Width="16" Height="16">
|
||||||
<Border x:Name="Border"
|
<Border x:Name="Border"
|
||||||
BorderBrush="{TemplateBinding BorderBrush}"
|
BorderBrush="{TemplateBinding BorderBrush}"
|
||||||
Background="{ButtonBackgroundColor}"
|
Background="{ButtonBackgroundColor}"
|
||||||
BorderThickness="1"
|
BorderThickness="1"
|
||||||
Width="{Binding Path={CheckBoxBulletDecoratorFontSize}-2}"
|
Width="14"
|
||||||
Height="{Binding Path={CheckBoxBulletDecoratorFontSize}-2}"
|
Height="14"
|
||||||
Margin="2"
|
Margin="1"
|
||||||
SnapsToDevicePixels="True"/>
|
SnapsToDevicePixels="True"/>
|
||||||
<Path x:Name="CheckMark"
|
<Path x:Name="CheckMark"
|
||||||
Stroke="{TemplateBinding Foreground}"
|
Stroke="{TemplateBinding Foreground}"
|
||||||
@ -415,58 +408,41 @@
|
|||||||
<Setter Property="Template">
|
<Setter Property="Template">
|
||||||
<Setter.Value>
|
<Setter.Value>
|
||||||
<ControlTemplate TargetType="{x:Type ToggleButton}">
|
<ControlTemplate TargetType="{x:Type ToggleButton}">
|
||||||
<Grid x:Name="toggleSwitch">
|
<Grid x:Name="toggleSwitch" Margin="10,0,0,0">
|
||||||
|
<Border x:Name="Border" CornerRadius="11"
|
||||||
<Grid.ColumnDefinitions>
|
Background="#FFFFFFFF"
|
||||||
<ColumnDefinition Width="Auto"/>
|
Width="50" Height="25">
|
||||||
<ColumnDefinition Width="Auto"/>
|
<Border.Effect>
|
||||||
</Grid.ColumnDefinitions>
|
<DropShadowEffect ShadowDepth="0.5" Direction="0" Opacity="0.3" />
|
||||||
|
</Border.Effect>
|
||||||
<Border Grid.Column="1" x:Name="Border" CornerRadius="8"
|
<Ellipse x:Name="Ellipse" Fill="#FFFFFFFF" Stretch="Uniform"
|
||||||
BorderThickness="1"
|
Margin="2 2 2 1"
|
||||||
Width="34" Height="17">
|
Stroke="Gray" StrokeThickness="0.2"
|
||||||
<Ellipse x:Name="Ellipse" Fill="{MainForegroundColor}" Stretch="Uniform"
|
HorizontalAlignment="Left" Width="22">
|
||||||
Margin="2,2,2,1"
|
<Ellipse.Effect>
|
||||||
HorizontalAlignment="Left" Width="12">
|
<DropShadowEffect BlurRadius="10" ShadowDepth="1" Opacity="0.3" Direction="260" />
|
||||||
|
</Ellipse.Effect>
|
||||||
</Ellipse>
|
</Ellipse>
|
||||||
</Border>
|
</Border>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<ControlTemplate.Triggers>
|
<ControlTemplate.Triggers>
|
||||||
<Trigger Property="IsMouseOver" Value="True">
|
|
||||||
<Setter TargetName="Border" Property="BorderBrush" Value="{MainForegroundColor}" />
|
|
||||||
<Setter TargetName="Border" Property="Background" Value="{LinkHoverForegroundColor}"/>
|
|
||||||
<Setter Property="Cursor" Value="Hand" />
|
|
||||||
<Setter Property="Panel.ZIndex" Value="1000"/>
|
|
||||||
</Trigger>
|
|
||||||
<Trigger Property="ToggleButton.IsChecked" Value="False">
|
<Trigger Property="ToggleButton.IsChecked" Value="False">
|
||||||
<Setter TargetName="Border" Property="Background" Value="{MainBackgroundColor}" />
|
<Setter TargetName="Border" Property="Background" Value="#C2283B" />
|
||||||
<Setter TargetName="Border" Property="BorderBrush" Value="{MainForegroundColor}" />
|
<Setter TargetName="Ellipse" Property="Margin" Value="2 2 2 1" />
|
||||||
<Setter TargetName="Ellipse" Property="Fill" Value="{MainForegroundColor}" />
|
|
||||||
|
|
||||||
</Trigger>
|
</Trigger>
|
||||||
|
|
||||||
<Trigger Property="ToggleButton.IsChecked" Value="True">
|
<Trigger Property="ToggleButton.IsChecked" Value="True">
|
||||||
<Setter TargetName="Border" Property="Background" Value="{MainBackgroundColor}" />
|
|
||||||
<Setter TargetName="Border" Property="BorderBrush" Value="{MainForegroundColor}" />
|
|
||||||
<Setter TargetName="Ellipse" Property="Fill" Value="{MainForegroundColor}" />
|
|
||||||
|
|
||||||
<Trigger.EnterActions>
|
<Trigger.EnterActions>
|
||||||
<BeginStoryboard>
|
<BeginStoryboard>
|
||||||
<Storyboard>
|
<Storyboard>
|
||||||
<ColorAnimation Storyboard.TargetName="Border"
|
<ColorAnimation Storyboard.TargetName="Border"
|
||||||
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Color)"
|
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Color)"
|
||||||
To="{ToggleButtonOnColor}" Duration="0:0:0.1" />
|
To="#34A543" Duration="0:0:0.1" />
|
||||||
<ColorAnimation Storyboard.TargetName="Border"
|
|
||||||
Storyboard.TargetProperty="(Border.BorderBrush).(SolidColorBrush.Color)"
|
|
||||||
To="{ToggleButtonOnColor}" Duration="0:0:0.1" />
|
|
||||||
|
|
||||||
<ColorAnimation Storyboard.TargetName="Ellipse"
|
|
||||||
Storyboard.TargetProperty="(Fill).(SolidColorBrush.Color)"
|
|
||||||
To="White" Duration="0:0:0.1" />
|
|
||||||
<ThicknessAnimation Storyboard.TargetName="Ellipse"
|
<ThicknessAnimation Storyboard.TargetName="Ellipse"
|
||||||
Storyboard.TargetProperty="Margin"
|
Storyboard.TargetProperty="Margin"
|
||||||
To="18,2,2,2" Duration="0:0:0.1" />
|
To="26 2 2 1" Duration="0:0:0.1" />
|
||||||
</Storyboard>
|
</Storyboard>
|
||||||
</BeginStoryboard>
|
</BeginStoryboard>
|
||||||
</Trigger.EnterActions>
|
</Trigger.EnterActions>
|
||||||
@ -475,15 +451,15 @@
|
|||||||
<Storyboard>
|
<Storyboard>
|
||||||
<ColorAnimation Storyboard.TargetName="Border"
|
<ColorAnimation Storyboard.TargetName="Border"
|
||||||
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Color)"
|
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Color)"
|
||||||
To="{MainBackgroundColor}" Duration="0:0:0.1" />
|
To="#C2283B" Duration="0:0:0.1" />
|
||||||
|
|
||||||
<ThicknessAnimation Storyboard.TargetName="Ellipse"
|
<ThicknessAnimation Storyboard.TargetName="Ellipse"
|
||||||
Storyboard.TargetProperty="Margin"
|
Storyboard.TargetProperty="Margin"
|
||||||
To="2,2,2,1" Duration="0:0:0.1" />
|
To="2 2 2 1" Duration="0:0:0.1" />
|
||||||
|
|
||||||
</Storyboard>
|
</Storyboard>
|
||||||
</BeginStoryboard>
|
</BeginStoryboard>
|
||||||
</Trigger.ExitActions>
|
</Trigger.ExitActions>
|
||||||
|
<Setter Property="Foreground" Value="{DynamicResource IdealForegroundColorBrush}" />
|
||||||
</Trigger>
|
</Trigger>
|
||||||
</ControlTemplate.Triggers>
|
</ControlTemplate.Triggers>
|
||||||
</ControlTemplate>
|
</ControlTemplate>
|
||||||
@ -541,7 +517,6 @@
|
|||||||
<Setter Property="BorderBrush" Value="{MainForegroundColor}"/>
|
<Setter Property="BorderBrush" Value="{MainForegroundColor}"/>
|
||||||
<Setter Property="BorderThickness" Value="1"/>
|
<Setter Property="BorderThickness" Value="1"/>
|
||||||
<Setter Property="Foreground" Value="{MainForegroundColor}"/>
|
<Setter Property="Foreground" Value="{MainForegroundColor}"/>
|
||||||
<Setter Property="FontSize" Value="{FontSize}"/>
|
|
||||||
<Setter Property="Padding" Value="5"/>
|
<Setter Property="Padding" Value="5"/>
|
||||||
<Setter Property="HorizontalAlignment" Value="Stretch"/>
|
<Setter Property="HorizontalAlignment" Value="Stretch"/>
|
||||||
<Setter Property="VerticalAlignment" Value="Center"/>
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||||
@ -566,66 +541,54 @@
|
|||||||
</Setter.Value>
|
</Setter.Value>
|
||||||
</Setter>
|
</Setter>
|
||||||
</Style>
|
</Style>
|
||||||
<Style x:Key="ScrollVisibilityRectangle" TargetType="Rectangle">
|
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<MultiDataTrigger>
|
|
||||||
<MultiDataTrigger.Conditions>
|
|
||||||
<Condition Binding="{Binding Path=ComputedHorizontalScrollBarVisibility, ElementName=scrollViewer}" Value="Visible"/>
|
|
||||||
<Condition Binding="{Binding Path=ComputedVerticalScrollBarVisibility, ElementName=scrollViewer}" Value="Visible"/>
|
|
||||||
</MultiDataTrigger.Conditions>
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
</MultiDataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</Window.Resources>
|
</Window.Resources>
|
||||||
<Grid Background="{MainBackgroundColor}" ShowGridLines="False" Name="WPFMainGrid" Width="Auto" Height="Auto" HorizontalAlignment="Stretch">
|
<Grid Background="{MainBackgroundColor}" ShowGridLines="False" Name="WPFMainGrid" Width="Auto" Height="Auto" HorizontalAlignment="Stretch">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="{TabRowHeightInPixels}px"/>
|
<RowDefinition Height="50px"/>
|
||||||
<RowDefinition Height=".9*"/>
|
<RowDefinition Height=".9*"/>
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="*"/>
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<DockPanel HorizontalAlignment="Stretch" Background="{MainBackgroundColor}" SnapsToDevicePixels="True" Grid.Row="0" Width="Auto">
|
<DockPanel HorizontalAlignment="Stretch" Background="{MainBackgroundColor}" SnapsToDevicePixels="True" Grid.Row="0" Width="Auto">
|
||||||
<Image Height="{WinUtilIconSize}" Width="{WinUtilIconSize}" Name="WPFIcon"
|
<Image Height="{ToggleButtonHeight}" Width="{ToggleButtonHeight}" Name="WPFIcon"
|
||||||
SnapsToDevicePixels="True" Source="https://christitus.com/images/logo-full.png" Margin="10"/>
|
SnapsToDevicePixels="True" Source="https://christitus.com/images/logo-full.png" Margin="10"/>
|
||||||
<ToggleButton HorizontalAlignment="Left" Height="{TabButtonHeight}" Width="{TabButtonWidth}"
|
<ToggleButton HorizontalAlignment="Left" Height="{ToggleButtonHeight}" Width="100"
|
||||||
Background="{ButtonInstallBackgroundColor}" Foreground="white" FontWeight="Bold" Name="WPFTab1BT">
|
Background="{ButtonInstallBackgroundColor}" Foreground="white" FontWeight="Bold" Name="WPFTab1BT">
|
||||||
<ToggleButton.Content>
|
<ToggleButton.Content>
|
||||||
<TextBlock FontSize="{TabButtonFontSize}" Background="Transparent" Foreground="{ButtonInstallForegroundColor}" >
|
<TextBlock Background="Transparent" Foreground="{ButtonInstallForegroundColor}" >
|
||||||
<Underline>I</Underline>nstall
|
<Underline>I</Underline>nstall
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
</ToggleButton.Content>
|
</ToggleButton.Content>
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton HorizontalAlignment="Left" Height="{TabButtonHeight}" Width="{TabButtonWidth}"
|
<ToggleButton HorizontalAlignment="Left" Height="{ToggleButtonHeight}" Width="100"
|
||||||
Background="{ButtonTweaksBackgroundColor}" Foreground="{ButtonTweaksForegroundColor}" FontWeight="Bold" Name="WPFTab2BT">
|
Background="{ButtonTweaksBackgroundColor}" Foreground="{ButtonTweaksForegroundColor}" FontWeight="Bold" Name="WPFTab2BT">
|
||||||
<ToggleButton.Content>
|
<ToggleButton.Content>
|
||||||
<TextBlock FontSize="{TabButtonFontSize}" Background="Transparent" Foreground="{ButtonTweaksForegroundColor}">
|
<TextBlock Background="Transparent" Foreground="{ButtonTweaksForegroundColor}">
|
||||||
<Underline>T</Underline>weaks
|
<Underline>T</Underline>weaks
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
</ToggleButton.Content>
|
</ToggleButton.Content>
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton HorizontalAlignment="Left" Height="{TabButtonHeight}" Width="{TabButtonWidth}"
|
<ToggleButton HorizontalAlignment="Left" Height="{ToggleButtonHeight}" Width="100"
|
||||||
Background="{ButtonConfigBackgroundColor}" Foreground="{ButtonConfigForegroundColor}" FontWeight="Bold" Name="WPFTab3BT">
|
Background="{ButtonConfigBackgroundColor}" Foreground="{ButtonConfigForegroundColor}" FontWeight="Bold" Name="WPFTab3BT">
|
||||||
<ToggleButton.Content>
|
<ToggleButton.Content>
|
||||||
<TextBlock FontSize="{TabButtonFontSize}" Background="Transparent" Foreground="{ButtonConfigForegroundColor}">
|
<TextBlock Background="Transparent" Foreground="{ButtonConfigForegroundColor}">
|
||||||
<Underline>C</Underline>onfig
|
<Underline>C</Underline>onfig
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
</ToggleButton.Content>
|
</ToggleButton.Content>
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton HorizontalAlignment="Left" Height="{TabButtonHeight}" Width="{TabButtonWidth}"
|
<ToggleButton HorizontalAlignment="Left" Height="{ToggleButtonHeight}" Width="100"
|
||||||
Background="{ButtonUpdatesBackgroundColor}" Foreground="{ButtonUpdatesForegroundColor}" FontWeight="Bold" Name="WPFTab4BT">
|
Background="{ButtonUpdatesBackgroundColor}" Foreground="{ButtonUpdatesForegroundColor}" FontWeight="Bold" Name="WPFTab4BT">
|
||||||
<ToggleButton.Content>
|
<ToggleButton.Content>
|
||||||
<TextBlock FontSize="{TabButtonFontSize}" Background="Transparent" Foreground="{ButtonUpdatesForegroundColor}">
|
<TextBlock Background="Transparent" Foreground="{ButtonUpdatesForegroundColor}">
|
||||||
<Underline>U</Underline>pdates
|
<Underline>U</Underline>pdates
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
</ToggleButton.Content>
|
</ToggleButton.Content>
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton HorizontalAlignment="Left" Height="{TabButtonHeight}" Width="{TabButtonWidth}"
|
<ToggleButton HorizontalAlignment="Left" Height="{ToggleButtonHeight}" Width="100"
|
||||||
Background="{ButtonUpdatesBackgroundColor}" Foreground="{ButtonUpdatesForegroundColor}" FontWeight="Bold" Name="WPFTab5BT">
|
Background="{ButtonUpdatesBackgroundColor}" Foreground="{ButtonUpdatesForegroundColor}" FontWeight="Bold" Name="WPFTab5BT">
|
||||||
<ToggleButton.Content>
|
<ToggleButton.Content>
|
||||||
<TextBlock FontSize="{TabButtonFontSize}" Background="Transparent" Foreground="{ButtonUpdatesForegroundColor}">
|
<TextBlock Background="Transparent" Foreground="{ButtonUpdatesForegroundColor}">
|
||||||
<Underline>M</Underline>icroWin
|
<Underline>M</Underline>icroWin
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
</ToggleButton.Content>
|
</ToggleButton.Content>
|
||||||
@ -637,23 +600,13 @@
|
|||||||
<ColumnDefinition Width="50px"/>
|
<ColumnDefinition Width="50px"/>
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
<!--
|
|
||||||
TODO:
|
|
||||||
Make this SearchBar TextBox Position itself and still
|
|
||||||
house the Magnifying Glass Character in place,
|
|
||||||
even if that Magnifying Icon changed its Size,
|
|
||||||
it should be positioned relative to the SearchBar.
|
|
||||||
Consider using a Math Solver, will help in making
|
|
||||||
development of these things much easier
|
|
||||||
-->
|
|
||||||
<TextBox
|
<TextBox
|
||||||
Grid.Column="0"
|
Grid.Column="0"
|
||||||
Width="{SearchBarWidth}"
|
Width="200"
|
||||||
Height="{SearchBarHeight}"
|
FontSize="14"
|
||||||
FontSize="{SearchBarTextBoxFontSize}"
|
|
||||||
VerticalAlignment="Center" HorizontalAlignment="Left"
|
VerticalAlignment="Center" HorizontalAlignment="Left"
|
||||||
Margin="10,0,0,0" BorderThickness="1" Padding="22,2,2,2"
|
Height="25" Margin="10,0,0,0" BorderThickness="1" Padding="22,2,2,2"
|
||||||
Name="SearchBar"
|
Name="CheckboxFilter"
|
||||||
Foreground="{MainForegroundColor}" Background="{MainBackgroundColor}"
|
Foreground="{MainForegroundColor}" Background="{MainBackgroundColor}"
|
||||||
ToolTip="Press Ctrl-F and type app name to filter application list below. Press Esc to reset the filter">
|
ToolTip="Press Ctrl-F and type app name to filter application list below. Press Esc to reset the filter">
|
||||||
</TextBox>
|
</TextBox>
|
||||||
@ -661,19 +614,11 @@
|
|||||||
Grid.Column="0"
|
Grid.Column="0"
|
||||||
VerticalAlignment="Center" HorizontalAlignment="Left"
|
VerticalAlignment="Center" HorizontalAlignment="Left"
|
||||||
FontFamily="Segoe MDL2 Assets"
|
FontFamily="Segoe MDL2 Assets"
|
||||||
FontSize="{IconFontSize}"
|
FontSize="14" Margin="16,0,0,0"></TextBlock>
|
||||||
Margin="16,0,0,0"></TextBlock>
|
|
||||||
<!--
|
|
||||||
TODO:
|
|
||||||
Make this ClearButton Positioning react to
|
|
||||||
SearchBar Width Value changing, so it'll look correct.
|
|
||||||
Consider using a Math Solver, will help in making
|
|
||||||
development of these things much easier
|
|
||||||
-->
|
|
||||||
<Button Grid.Column="0"
|
<Button Grid.Column="0"
|
||||||
VerticalAlignment="Center" HorizontalAlignment="Left"
|
VerticalAlignment="Center" HorizontalAlignment="Left"
|
||||||
Name="SearchBarClearButton"
|
Name="CheckboxFilterClear"
|
||||||
Style="{StaticResource SearchBarClearButtonStyle}"
|
Style="{StaticResource ClearButtonStyle}"
|
||||||
Margin="193,0,0,0" Visibility="Collapsed"/>
|
Margin="193,0,0,0" Visibility="Collapsed"/>
|
||||||
|
|
||||||
<Button Name="SettingsButton"
|
<Button Name="SettingsButton"
|
||||||
@ -681,8 +626,8 @@
|
|||||||
Grid.Column="1" BorderBrush="Transparent"
|
Grid.Column="1" BorderBrush="Transparent"
|
||||||
Background="{MainBackgroundColor}"
|
Background="{MainBackgroundColor}"
|
||||||
Foreground="{MainForegroundColor}"
|
Foreground="{MainForegroundColor}"
|
||||||
FontSize="{SettingsIconFontSize}"
|
FontSize="18"
|
||||||
Width="{IconButtonSize}" Height="{IconButtonSize}"
|
Width="35" Height="35"
|
||||||
HorizontalAlignment="Right" VerticalAlignment="Top"
|
HorizontalAlignment="Right" VerticalAlignment="Top"
|
||||||
Margin="0,5,5,0"
|
Margin="0,5,5,0"
|
||||||
FontFamily="Segoe MDL2 Assets"
|
FontFamily="Segoe MDL2 Assets"
|
||||||
@ -693,11 +638,10 @@
|
|||||||
HorizontalAlignment="Right" VerticalAlignment="Top">
|
HorizontalAlignment="Right" VerticalAlignment="Top">
|
||||||
<Border Background="{MainBackgroundColor}" BorderBrush="{MainForegroundColor}" BorderThickness="1" CornerRadius="0" Margin="0">
|
<Border Background="{MainBackgroundColor}" BorderBrush="{MainForegroundColor}" BorderThickness="1" CornerRadius="0" Margin="0">
|
||||||
<StackPanel Background="{MainBackgroundColor}" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
<StackPanel Background="{MainBackgroundColor}" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||||
<MenuItem FontSize="{ButtonFontSize}" Header="Import" Name="ImportMenuItem" Foreground="{MainForegroundColor}"/>
|
<MenuItem Header="Import" Name="ImportMenuItem" Foreground="{MainForegroundColor}"/>
|
||||||
<MenuItem FontSize="{ButtonFontSize}" Header="Export" Name="ExportMenuItem" Foreground="{MainForegroundColor}"/>
|
<MenuItem Header="Export" Name="ExportMenuItem" Foreground="{MainForegroundColor}"/>
|
||||||
<Separator/>
|
<Separator/>
|
||||||
<MenuItem FontSize="{ButtonFontSize}" Header="About" Name="AboutMenuItem" Foreground="{MainForegroundColor}"/>
|
<MenuItem Header="About" Name="AboutMenuItem" Foreground="{MainForegroundColor}"/>
|
||||||
<MenuItem FontSize="{ButtonFontSize}" Header="Sponsors" Name="SponsorMenuItem" Foreground="{MainForegroundColor}"/>
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Border>
|
</Border>
|
||||||
</Popup>
|
</Popup>
|
||||||
@ -707,11 +651,11 @@
|
|||||||
Content="×" BorderThickness="0"
|
Content="×" BorderThickness="0"
|
||||||
BorderBrush="Transparent"
|
BorderBrush="Transparent"
|
||||||
Background="{MainBackgroundColor}"
|
Background="{MainBackgroundColor}"
|
||||||
Width="{IconButtonSize}" Height="{IconButtonSize}"
|
Width="35" Height="35"
|
||||||
HorizontalAlignment="Right" VerticalAlignment="Top"
|
HorizontalAlignment="Right" VerticalAlignment="Top"
|
||||||
Margin="0,5,5,0"
|
Margin="0,5,5,0"
|
||||||
FontFamily="Arial"
|
FontFamily="Arial"
|
||||||
Foreground="{MainForegroundColor}" FontSize="{IconFontSize}" Name="WPFCloseButton" />
|
Foreground="{MainForegroundColor}" FontSize="18" Name="WPFCloseButton" />
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
</DockPanel>
|
</DockPanel>
|
||||||
@ -727,37 +671,36 @@
|
|||||||
<StackPanel Background="{MainBackgroundColor}" Orientation="Horizontal" Grid.Row="0" HorizontalAlignment="Left" VerticalAlignment="Top" Grid.Column="0" Grid.ColumnSpan="3" Margin="5">
|
<StackPanel Background="{MainBackgroundColor}" Orientation="Horizontal" Grid.Row="0" HorizontalAlignment="Left" VerticalAlignment="Top" Grid.Column="0" Grid.ColumnSpan="3" Margin="5">
|
||||||
<Button Name="WPFinstall" Content=" Install/Upgrade Selected" Margin="2" />
|
<Button Name="WPFinstall" Content=" Install/Upgrade Selected" Margin="2" />
|
||||||
<Button Name="WPFInstallUpgrade" Content=" Upgrade All" Margin="2"/>
|
<Button Name="WPFInstallUpgrade" Content=" Upgrade All" Margin="2"/>
|
||||||
<Button Name="WPFuninstall" Content=" Uninstall Selected" Margin="2"/>
|
<Button Name="WPFuninstall" Content=" Uninstall Selection" Margin="2"/>
|
||||||
<Button Name="WPFGetInstalled" Content=" Get Installed" Margin="2"/>
|
<Button Name="WPFGetInstalled" Content=" Get Installed" Margin="2"/>
|
||||||
<Button Name="WPFclearWinget" Content=" Clear Selection" Margin="2"/>
|
<Button Name="WPFclearWinget" Content=" Clear Selection" Margin="2"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<ScrollViewer x:Name="scrollViewer" Grid.Row="1" Grid.Column="0" Padding="-1" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto"
|
<ScrollViewer Grid.Row="1" Grid.Column="0" Padding="-1" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto"
|
||||||
BorderBrush="Transparent" BorderThickness="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
BorderBrush="Transparent" BorderThickness="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||||
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||||
{{InstallPanel_applications}}
|
{{InstallPanel_applications}}
|
||||||
</Grid>
|
</Grid>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
|
|
||||||
<Rectangle Grid.Row="1" Grid.Column="0" Width="18" Height="18" Fill="{MainBackgroundColor}" HorizontalAlignment="Right" VerticalAlignment="Bottom" Style="{StaticResource ScrollVisibilityRectangle}"/>
|
|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem Header="Tweaks" Visibility="Collapsed" Name="WPFTab2">
|
<TabItem Header="Tweaks" Visibility="Collapsed" Name="WPFTab2">
|
||||||
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
||||||
<Grid Background="Transparent">
|
<Grid Background="Transparent">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="45px"/>
|
<RowDefinition Height="55"/>
|
||||||
<RowDefinition Height=".70*"/>
|
<RowDefinition Height=".70*"/>
|
||||||
<RowDefinition Height=".10*"/>
|
<RowDefinition Height=".10*"/>
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
{{InstallPanel_tweaks}}
|
{{InstallPanel_tweaks}}
|
||||||
<StackPanel Background="{MainBackgroundColor}" Orientation="Horizontal" HorizontalAlignment="Left" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Margin="5">
|
<StackPanel Background="{MainBackgroundColor}" Orientation="Horizontal" HorizontalAlignment="Left" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Margin="10">
|
||||||
<Label Content="Recommended Selections:" FontSize="{FontSize}" VerticalAlignment="Center" Margin="2"/>
|
<Label Content="Recommended Selections:" FontSize="14" VerticalAlignment="Center"/>
|
||||||
<Button Name="WPFstandard" Content=" Standard " Margin="2"/>
|
<Button Name="WPFdesktop" Content=" Desktop " Margin="1"/>
|
||||||
<Button Name="WPFminimal" Content=" Minimal " Margin="2"/>
|
<Button Name="WPFlaptop" Content=" Laptop " Margin="1"/>
|
||||||
<Button Name="WPFclear" Content=" Clear " Margin="2"/>
|
<Button Name="WPFminimal" Content=" Minimal " Margin="1"/>
|
||||||
<Button Name="WPFGetInstalledTweaks" Content=" Get Installed " Margin="2"/>
|
<Button Name="WPFclear" Content=" Clear " Margin="1"/>
|
||||||
|
<Button Name="WPFGetInstalledTweaks" Content=" Get Installed " Margin="1"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<Border Grid.ColumnSpan="2" Grid.Row="2" Grid.Column="0">
|
<Border Grid.ColumnSpan="2" Grid.Row="2" Grid.Column="0">
|
||||||
<StackPanel Background="{MainBackgroundColor}" Orientation="Horizontal" HorizontalAlignment="Left">
|
<StackPanel Background="{MainBackgroundColor}" Orientation="Horizontal" HorizontalAlignment="Left">
|
||||||
@ -788,19 +731,19 @@
|
|||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<Border Grid.Row="0" Grid.Column="0">
|
<Border Grid.Row="0" Grid.Column="0">
|
||||||
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
||||||
<Button Name="WPFUpdatesdefault" FontSize="{ConfigTabButtonFontSize}" Height="Auto" Width="Auto" Content="Default (Out of Box) Settings" Margin="20,4,20,10" Padding="10"/>
|
<Button Name="WPFUpdatesdefault" FontSize="16" Content="Default (Out of Box) Settings" Margin="20,4,20,10" Padding="10"/>
|
||||||
<TextBlock Margin="20,0,20,0" Padding="10" TextWrapping="WrapWithOverflow" MaxWidth="300">This is the default settings that come with Windows. <LineBreak/><LineBreak/> No modifications are made and will remove any custom windows update settings.<LineBreak/><LineBreak/>Note: If you still encounter update errors, reset all updates in the config tab. That will restore ALL Microsoft Update Services from their servers and reinstall them to default settings.</TextBlock>
|
<TextBlock Margin="20,0,20,0" Padding="10" TextWrapping="WrapWithOverflow" MaxWidth="300">This is the default settings that come with Windows. <LineBreak/><LineBreak/> No modifications are made and will remove any custom windows update settings.<LineBreak/><LineBreak/>Note: If you still encounter update errors, reset all updates in the config tab. That will restore ALL Microsoft Update Services from their servers and reinstall them to default settings.</TextBlock>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Border>
|
</Border>
|
||||||
<Border Grid.Row="0" Grid.Column="1">
|
<Border Grid.Row="0" Grid.Column="1">
|
||||||
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
||||||
<Button Name="WPFUpdatessecurity" FontSize="{ConfigTabButtonFontSize}" Height="Auto" Width="Auto" Content="Security (Recommended) Settings" Margin="20,4,20,10" Padding="10"/>
|
<Button Name="WPFUpdatessecurity" FontSize="16" Content="Security (Recommended) Settings" Margin="20,4,20,10" Padding="10"/>
|
||||||
<TextBlock Margin="20,0,20,0" Padding="10" TextWrapping="WrapWithOverflow" MaxWidth="300">This is my recommended setting I use on all computers.<LineBreak/><LineBreak/> It will delay feature updates by 2 years and will install security updates 4 days after release.<LineBreak/><LineBreak/>Feature Updates: Adds features and often bugs to systems when they are released. You want to delay these as long as possible.<LineBreak/><LineBreak/>Security Updates: Typically these are pressing security flaws that need to be patched quickly. You only want to delay these a couple of days just to see if they are safe and don't break other systems. You don't want to go without these for ANY extended periods of time.</TextBlock>
|
<TextBlock Margin="20,0,20,0" Padding="10" TextWrapping="WrapWithOverflow" MaxWidth="300">This is my recommended setting I use on all computers.<LineBreak/><LineBreak/> It will delay feature updates by 2 years and will install security updates 4 days after release.<LineBreak/><LineBreak/>Feature Updates: Adds features and often bugs to systems when they are released. You want to delay these as long as possible.<LineBreak/><LineBreak/>Security Updates: Typically these are pressing security flaws that need to be patched quickly. You only want to delay these a couple of days just to see if they are safe and don't break other systems. You don't want to go without these for ANY extended periods of time.</TextBlock>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Border>
|
</Border>
|
||||||
<Border Grid.Row="0" Grid.Column="2">
|
<Border Grid.Row="0" Grid.Column="2">
|
||||||
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
<StackPanel Background="{MainBackgroundColor}" SnapsToDevicePixels="True">
|
||||||
<Button Name="WPFUpdatesdisable" FontSize="{ConfigTabButtonFontSize}" Height="Auto" Width="Auto" Content="Disable ALL Updates (NOT RECOMMENDED!)" Margin="20,4,20,10" Padding="10,10,10,10"/>
|
<Button Name="WPFUpdatesdisable" FontSize="16" Content="Disable ALL Updates (NOT RECOMMENDED!)" Margin="20,4,20,10" Padding="10,10,10,10"/>
|
||||||
<TextBlock Margin="20,0,20,0" Padding="10" TextWrapping="WrapWithOverflow" MaxWidth="300">This completely disables ALL Windows Updates and is NOT RECOMMENDED.<LineBreak/><LineBreak/> However, it can be suitable if you use your system for a select purpose and do not actively browse the internet. <LineBreak/><LineBreak/>Note: Your system will be easier to hack and infect without security updates.</TextBlock>
|
<TextBlock Margin="20,0,20,0" Padding="10" TextWrapping="WrapWithOverflow" MaxWidth="300">This completely disables ALL Windows Updates and is NOT RECOMMENDED.<LineBreak/><LineBreak/> However, it can be suitable if you use your system for a select purpose and do not actively browse the internet. <LineBreak/><LineBreak/>Note: Your system will be easier to hack and infect without security updates.</TextBlock>
|
||||||
<TextBlock Text=" " Margin="20,0,20,0" Padding="10" TextWrapping="WrapWithOverflow" MaxWidth="300"/>
|
<TextBlock Text=" " Margin="20,0,20,0" Padding="10" TextWrapping="WrapWithOverflow" MaxWidth="300"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
@ -808,7 +751,7 @@
|
|||||||
</Grid>
|
</Grid>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem Header="MicroWin" Visibility="Collapsed" Name="WPFTab5">
|
<TabItem Header="MicroWin" Visibility="Collapsed" Name="WPFTab5" Width="Auto" Height="Auto">
|
||||||
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
||||||
<Grid Width="Auto" Height="Auto">
|
<Grid Width="Auto" Height="Auto">
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
@ -823,38 +766,27 @@
|
|||||||
HorizontalAlignment="Stretch">
|
HorizontalAlignment="Stretch">
|
||||||
<StackPanel Name="MicrowinMain" Background="{MainBackgroundColor}" SnapsToDevicePixels="True" Grid.Column="0" Grid.Row="0">
|
<StackPanel Name="MicrowinMain" Background="{MainBackgroundColor}" SnapsToDevicePixels="True" Grid.Column="0" Grid.Row="0">
|
||||||
<StackPanel Background="Transparent" SnapsToDevicePixels="True" Margin="1">
|
<StackPanel Background="Transparent" SnapsToDevicePixels="True" Margin="1">
|
||||||
<CheckBox x:Name="WPFMicrowinDownloadFromGitHub" Content="Download oscdimg.exe from CTT Github repo" IsChecked="False" Margin="-10,1,1,1" />
|
<CheckBox x:Name="WPFMicrowinDownloadFromGitHub" Content="Download oscdimg.exe from CTT Github repo" IsChecked="False" Margin="1" />
|
||||||
<TextBlock Margin="5" Padding="1" TextWrapping="Wrap" Foreground="{ComboBoxForegroundColor}">
|
<TextBlock Margin="5" Padding="1" TextWrapping="Wrap" Foreground="{ComboBoxForegroundColor}">
|
||||||
Choose a Windows ISO file that you've downloaded <LineBreak/>
|
Choose a Windows ISO file that you've downloaded <LineBreak/>
|
||||||
Check the status in the console
|
Check the status in the console
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
<CheckBox x:Name="WPFMicrowinISOScratchDir" Content="Use ISO directory for ScratchDir " IsChecked="False" Margin="-10,1,1,1"
|
<CheckBox x:Name="WPFMicrowinISOScratchDir" Content="Use ISO directory for ScratchDir " IsChecked="False" Margin="1"
|
||||||
ToolTip="Use ISO directory for ScratchDir " />
|
ToolTip="Use ISO directory for ScratchDir " />
|
||||||
<Grid>
|
|
||||||
<Grid.ColumnDefinitions>
|
<Button Name="MicrowinScratchDirBT" Margin="2" Padding="1">
|
||||||
<ColumnDefinition Width="*" /> <!-- Takes the remaining space -->
|
|
||||||
<ColumnDefinition Width="30" /> <!-- Fixed width for Button -->
|
|
||||||
</Grid.ColumnDefinitions>
|
|
||||||
<TextBox Name="MicrowinScratchDirBox" Background="Transparent" BorderBrush="{MainForegroundColor}"
|
|
||||||
Text="Scratch"
|
|
||||||
Margin="2"
|
|
||||||
IsReadOnly="False"
|
|
||||||
ToolTip="Alt Path For Scratch Directory"
|
|
||||||
Grid.Column="0"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Foreground="{LabelboxForegroundColor}">
|
|
||||||
</TextBox>
|
|
||||||
<Button Name="MicrowinScratchDirBT"
|
|
||||||
Width="Auto"
|
|
||||||
Height="Auto"
|
|
||||||
Grid.Column="1"
|
|
||||||
Margin="2"
|
|
||||||
Padding="1" VerticalAlignment="Center">
|
|
||||||
<Button.Content>
|
<Button.Content>
|
||||||
...
|
<TextBox Name="MicrowinScratchDirBox" Background="Transparent" BorderBrush="{MainForegroundColor}"
|
||||||
|
Text="Scratch" Padding="0"
|
||||||
|
ToolTip="Alt Path For Scratch Directory" BorderThickness="1"
|
||||||
|
Margin="0,0,0,3" HorizontalAlignment="Left"
|
||||||
|
IsReadOnly="False"
|
||||||
|
Height="Auto"
|
||||||
|
Width="110"
|
||||||
|
Foreground="{ButtonForegroundColor}"
|
||||||
|
/>
|
||||||
</Button.Content>
|
</Button.Content>
|
||||||
</Button>
|
</Button>
|
||||||
</Grid>
|
|
||||||
<TextBox Name="MicrowinFinalIsoLocation" Background="Transparent" BorderBrush="{MainForegroundColor}"
|
<TextBox Name="MicrowinFinalIsoLocation" Background="Transparent" BorderBrush="{MainForegroundColor}"
|
||||||
Text="ISO location will be printed here"
|
Text="ISO location will be printed here"
|
||||||
Margin="2"
|
Margin="2"
|
||||||
@ -875,12 +807,12 @@
|
|||||||
<TextBlock Margin="6" Padding="1" TextWrapping="Wrap">Choose Windows SKU</TextBlock>
|
<TextBlock Margin="6" Padding="1" TextWrapping="Wrap">Choose Windows SKU</TextBlock>
|
||||||
<ComboBox x:Name = "MicrowinWindowsFlavors" Margin="1" />
|
<ComboBox x:Name = "MicrowinWindowsFlavors" Margin="1" />
|
||||||
<TextBlock Margin="6" Padding="1" TextWrapping="Wrap">Choose Windows features you want to remove from the ISO</TextBlock>
|
<TextBlock Margin="6" Padding="1" TextWrapping="Wrap">Choose Windows features you want to remove from the ISO</TextBlock>
|
||||||
<CheckBox Name="WPFMicrowinKeepProvisionedPackages" Content="Keep Provisioned Packages" Margin="-10,5,0,0" ToolTip="Do not remove Microsoft Provisioned packages from the ISO."/>
|
<CheckBox Name="WPFMicrowinKeepProvisionedPackages" Content="Keep Provisioned Packages" Margin="5,0" ToolTip="Do not remove Microsoft Provisioned packages from the ISO."/>
|
||||||
<CheckBox Name="WPFMicrowinKeepAppxPackages" Content="Keep Appx Packages" Margin="-10,5,0,0" ToolTip="Do not remove Microsoft Appx packages from the ISO."/>
|
<CheckBox Name="WPFMicrowinKeepAppxPackages" Content="Keep Appx Packages" Margin="5,0" ToolTip="Do not remove Microsoft Appx packages from the ISO."/>
|
||||||
<CheckBox Name="WPFMicrowinKeepDefender" Content="Keep Defender" Margin="-10,5,0,0" IsChecked="True" ToolTip="Do not remove Microsoft Antivirus from the ISO."/>
|
<CheckBox Name="WPFMicrowinKeepDefender" Content="Keep Defender" Margin="5,0" IsChecked="True" ToolTip="Do not remove Microsoft Antivirus from the ISO."/>
|
||||||
<CheckBox Name="WPFMicrowinKeepEdge" Content="Keep Edge" Margin="-10,5,0,0" IsChecked="True" ToolTip="Do not remove Microsoft Edge from the ISO."/>
|
<CheckBox Name="WPFMicrowinKeepEdge" Content="Keep Edge" Margin="5,0" IsChecked="True" ToolTip="Do not remove Microsoft Edge from the ISO."/>
|
||||||
<Rectangle Fill="{MainForegroundColor}" Height="2" HorizontalAlignment="Stretch" Margin="0,10,0,10"/>
|
<Rectangle Fill="{MainForegroundColor}" Height="2" HorizontalAlignment="Stretch" Margin="0,10,0,10"/>
|
||||||
<CheckBox Name="MicrowinInjectDrivers" Content="Inject drivers (I KNOW WHAT I'M DOING)" Margin="-10,5,0,0" IsChecked="False" ToolTip="Path to unpacked drivers all sys and inf files for devices that need drivers"/>
|
<CheckBox Name="MicrowinInjectDrivers" Content="Inject drivers (I KNOW WHAT I'M DOING)" Margin="5,0" IsChecked="False" ToolTip="Path to unpacked drivers all sys and inf files for devices that need drivers"/>
|
||||||
<TextBox Name="MicrowinDriverLocation" Background="Transparent" BorderThickness="1" BorderBrush="{MainForegroundColor}"
|
<TextBox Name="MicrowinDriverLocation" Background="Transparent" BorderThickness="1" BorderBrush="{MainForegroundColor}"
|
||||||
Margin="6"
|
Margin="6"
|
||||||
Text=""
|
Text=""
|
||||||
@ -889,9 +821,8 @@
|
|||||||
Foreground="{LabelboxForegroundColor}"
|
Foreground="{LabelboxForegroundColor}"
|
||||||
ToolTip="Path to unpacked drivers all sys and inf files for devices that need drivers"
|
ToolTip="Path to unpacked drivers all sys and inf files for devices that need drivers"
|
||||||
/>
|
/>
|
||||||
<CheckBox Name="MicrowinImportDrivers" Content="Import drivers from current system" Margin="-10,5,0,0" IsChecked="False" ToolTip="Export all third-party drivers from your system and inject them to the MicroWin image"/>
|
|
||||||
<Rectangle Fill="{MainForegroundColor}" Height="2" HorizontalAlignment="Stretch" Margin="0,10,0,10"/>
|
<Rectangle Fill="{MainForegroundColor}" Height="2" HorizontalAlignment="Stretch" Margin="0,10,0,10"/>
|
||||||
<CheckBox Name="WPFMicrowinCopyToUsb" Content="Copy to Ventoy" Margin="-10,5,0,0" IsChecked="False" ToolTip="Copy to USB disk with a label Ventoy"/>
|
<CheckBox Name="WPFMicrowinCopyToUsb" Content="Copy to Ventoy" Margin="5,0" IsChecked="False" ToolTip="Copy to USB disk with a label Ventoy"/>
|
||||||
<Rectangle Fill="{MainForegroundColor}" Height="2" HorizontalAlignment="Stretch" Margin="0,10,0,10"/>
|
<Rectangle Fill="{MainForegroundColor}" Height="2" HorizontalAlignment="Stretch" Margin="0,10,0,10"/>
|
||||||
<Button Name="WPFMicrowin" Content="Start the process" Margin="2" Padding="15"/>
|
<Button Name="WPFMicrowin" Content="Start the process" Margin="2" Padding="15"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
@ -912,7 +843,7 @@
|
|||||||
<Grid Name = "BusyMessage" Visibility="Collapsed">
|
<Grid Name = "BusyMessage" Visibility="Collapsed">
|
||||||
<TextBlock Name = "BusyText" Text="NBusy" Padding="22,2,1,1" />
|
<TextBlock Name = "BusyText" Text="NBusy" Padding="22,2,1,1" />
|
||||||
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Left" FontFamily="Segoe MDL2 Assets"
|
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Left" FontFamily="Segoe MDL2 Assets"
|
||||||
FontSize="{IconFontSize}" Margin="16,0,0,0"></TextBlock>
|
FontSize="14" Margin="16,0,0,0"></TextBlock>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<TextBlock x:Name = "asciiTextBlock"
|
<TextBlock x:Name = "asciiTextBlock"
|
||||||
@ -922,7 +853,7 @@
|
|||||||
VerticalAlignment = "Top"
|
VerticalAlignment = "Top"
|
||||||
Height = "Auto"
|
Height = "Auto"
|
||||||
Width = "Auto"
|
Width = "Auto"
|
||||||
FontSize = "{MicroWinLogoSize}"
|
FontSize = "10"
|
||||||
FontFamily = "Courier New"
|
FontFamily = "Courier New"
|
||||||
>
|
>
|
||||||
/\/\ (_) ___ _ __ ___ / / /\ \ \(_) _ __
|
/\/\ (_) ___ _ __ ___ / / /\ \ \(_) _ __
|
||||||
|