2023-11-28 16:11:11 -06:00
function Invoke-WPFMicrowin {
<#
. DESCRIPTION
Invoke MicroWin routines . . .
#>
if ( $sync . ProcessRunning ) {
$msg = " GetIso process is currently running. "
[ System.Windows.MessageBox ] :: Show ( $msg , " Winutil " , [ System.Windows.MessageBoxButton ] :: OK , [ System.Windows.MessageBoxImage ] :: Warning )
return
}
Test 2024 01 03 (#1384)
* Increase performance during loading. (#1348)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Custom save targets for MicroWin ISOs (#1346)
* Workaround for Explorer freezes
Some people have reported that setting the Event Log service to Automatic and starting it can (temporarily) fix Explorer freezes.
This change detects whether the next service in the list is "EventLog" and skips it
* Allow user to save MicroWin ISOs anywhere
Adds a SaveFileDialog component to let the user specify the location of the MicroWin ISO and uses it during creation with oscdimg.
(It uses a Process object from System.Diagnostics because I couldn't get it to work with Start-Process)
* Removed temporary workaround
Removed my version of the workaround in favor of the version from @KonTy (merge PR #1348 first)
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Highly anticipated fix for small screens (#1358)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
* Highly anticipated fix for small screen computers
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Winutil take a long time to create iso file and goes to sleep, this fixes that issue #1343 (#1371)
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Create .gitattributes
* Update .gitattributes
* add winget ventoy package (#1374)
* add winget ventoy package
* convert applications.json to utf-8
* update applications.json again
* Compile Winutil
* Update applications.json
fix encoding
* Compile Winutil
* Fix Encoding and Bad Symbols
* Compile Winutil
* feat: Add more software choices (#1379)
* Compile Winutil
* Update configs.Tests.ps1
* Update winutil.Tests.ps1
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* fix functions for unit tests
* Compile Winutil
* Update Invoke-MicroWin-Helper.ps1
* Compile Winutil
* fix name WPF Close Button
* Update inputXML.xaml
* Compile Winutil
* my bad that wasnt it
* modify unit test for stop on error
* Compile Winutil
* Update unittests.yaml
* Create test
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Compile Winutil
* Make restore points optional, enabled by default (#1380)
* Make restore points optional, enabled by default
* Tweaks order fix if restorepoint is checked
* Compile Winutil
* update unit tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update winutil.Tests.ps1
* tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* fix unit test
* Update winutil.Tests.ps1
* rewrite all pester test for winutil
* Compile Winutil
* fix handle is invalid error
* final unit test
---------
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Munkk <152475628+munkk01@users.noreply.github.com>
Co-authored-by: Kiril Vasilev <Kiril.v92@gmail.com>
2024-01-12 00:34:41 -06:00
# Define the constants for Windows API
Add-Type @"
using System ;
using System . Runtime . InteropServices ;
public class PowerManagement {
[ DllImport ( " kernel32.dll " , CharSet = CharSet . Auto , SetLastError = true ) ]
public static extern EXECUTION_STATE SetThreadExecutionState ( EXECUTION_STATE esFlags ) ;
[ FlagsAttribute ]
public enum EXECUTION_STATE : uint {
ES_SYSTEM_REQUIRED = 0x00000001 ,
ES_DISPLAY_REQUIRED = 0x00000002 ,
ES_CONTINUOUS = 0x80000000 ,
}
}
" @
# Prevent the machine from sleeping
[ PowerManagement ] :: SetThreadExecutionState ( [ PowerManagement ] :: EXECUTION_STATE :: ES_CONTINUOUS -bor [ PowerManagement ] :: EXECUTION_STATE :: ES_SYSTEM_REQUIRED -bor [ PowerManagement ] :: EXECUTION_STATE :: ES_DISPLAY_REQUIRED )
# Ask the user where to save the file
$SaveDialog = New-Object System . Windows . Forms . SaveFileDialog
$SaveDialog . InitialDirectory = [ Environment ] :: GetFolderPath ( 'Desktop' )
$SaveDialog . Filter = " ISO images (*.iso)|*.iso "
$SaveDialog . ShowDialog ( ) | Out-Null
if ( $SaveDialog . FileName -eq " " ) {
Write-Host " No file name for the target image was specified "
return
}
Write-Host " Target ISO location: $( $SaveDialog . FileName ) "
2023-11-28 16:11:11 -06:00
$index = $sync . MicrowinWindowsFlavors . SelectedValue . Split ( " : " ) [ 0 ] . Trim ( )
Write-Host " Index chosen: ' $index ' from $( $sync . MicrowinWindowsFlavors . SelectedValue ) "
$keepPackages = $sync . WPFMicrowinKeepProvisionedPackages . IsChecked
$keepProvisionedPackages = $sync . WPFMicrowinKeepAppxPackages . IsChecked
$keepDefender = $sync . WPFMicrowinKeepDefender . IsChecked
$keepEdge = $sync . WPFMicrowinKeepEdge . IsChecked
$copyToUSB = $sync . WPFMicrowinCopyToUsb . IsChecked
$injectDrivers = $sync . MicrowinInjectDrivers . IsChecked
$mountDir = $sync . MicrowinMountDir . Text
$scratchDir = $sync . MicrowinScratchDir . Text
2024-03-21 18:23:24 -05:00
# Detect if the Windows image is an ESD file and convert it to WIM
if ( -not ( Test-Path -Path $mountDir \ sources \ install . wim -PathType Leaf ) -and ( Test-Path -Path $mountDir \ sources \ install . esd -PathType Leaf ) )
{
Write-Host " Exporting Windows image to a WIM file, keeping the index we want to work on. This can take several minutes, depending on the performance of your computer... "
Export-WindowsImage -SourceImagePath $mountDir \ sources \ install . esd -SourceIndex $index -DestinationImagePath $mountDir \ sources \ install . wim -CompressionType " Max "
if ( $ ? )
{
Remove-Item -Path $mountDir \ sources \ install . esd -Force
# Since we've already exported the image index we wanted, switch to the first one
$index = 1
}
else
{
$msg = " The export process has failed and MicroWin processing cannot continue "
Write-Host " Failed to export the image "
[ System.Windows.MessageBox ] :: Show ( $msg , " Winutil " , [ System.Windows.MessageBoxButton ] :: OK , [ System.Windows.MessageBoxImage ] :: Error )
return
}
}
Test 2024 01 25 (#1505)
* Update applications.json
Fake app add made by linux fanboy
* Compile Winutil
* Update screen-install.png (#1464)
* Compile Winutil
* Update files (#1487)
- Add detections for whether the image to be processed by MicroWin is Windows 10 or later
- Add procedure to clear the indexes ComboBox (WinForms term) every time an ISO is specified
Co-authored-by: Chris Titus <contact@christitus.com>
* Lots of changes to Invoke-WPFFixesUpdate (#1467)
* Add Guilded into Communication Tab (#1059)
* Add Guilded into Communication Tab
* Remove Choco Package due to there is no Chocolatey packages
* : Add ZeroTier One to utilities menu (#1061)
* Update applications.json (#1063)
Update to add [SuperF4 - Stefan Sundin](https://stefansundin.github.io/superf4/), as mentioned in #374 [Choco - SuperF4](https://community.chocolatey.org/packages/superf4) maintained by Xav83. [WinGet - SuperF4](https://winstall.app/apps/StefanSundin.Superf4) SuperF4 and Winget package published by Stefan Sundin.
* Update inputXML.xaml (#1062)
Updated inputXML.xaml to account for addition of the SuperF4 software.
* Added AIMP music player (#1064)
* Add Ventoy (Chocolatey Only Package) & .NET Core Runtime (Winget & Chocolatey) (#1066)
* Tidy up SuperF4 line.
* Tidy up SuperF4 line.
Used spaces instead of tabs.
* Add dotnet 7.0.11 Desktop Runtime
* Undone changes to SuperF4 line
* Addition of Ventoy (chocolatey only) package
* Comment Spacing, Indentation, and Capitalization (#1084)
* Comment Spacing, Indentation, and Capitalization
* Comment Grammar and Spacing
Makes grammar in comments better and more consistent
Adds space before comment and centers word in `Write-Host` commands
* More Grammar and Formatting
* Add some comments
* Populate PlaceHolder comments in functions
Files I found that has issues:
Get-WinUtilRegistry.ps1
Install-WinUtilWinget.ps1
Invoke-WinUtilDarkMode.ps1
Remove-WinUtilAPPX.ps1
Test-WinUtilPackageManager.ps1
Update-WinUtilProgramWinget.ps1
Invoke-WPFUpdatessecurity.ps1
* Tweak a few more comments
* Tweak another write-host statement
* Undo Catch statement adjustment
It's outside of the scope of this pull request
* Fix indentation
* Description, Progress Bar, and nuke step 10
- Added a full description of exactly what the function does
- Replaced `Write-Host`s with multiple progress bars
- Might've added too many, but I didn't want to add one for just a few of them as I want the user to be able to see all tasks that have been performed, just like with `Write-Host`
- Removed Step 10
- Only applies to Windows 8
* Add Aggressive Parameter, Actually Force Check for Updates
* Add aggressive parameter and add system repair step
* Lots of changes
* Revert Stuff
This reverts commit 199a92e26e418c544691a0b6eda5d6e7f3e56b8d.
Revert "Comment Spacing, Indentation, and Capitalization (#1084)"
This reverts commit acc2b5b243654156de4c6bdbcc5f7b72e4cdf578.
Revert "Add Ventoy (Chocolatey Only Package) & .NET Core Runtime (Winget & Chocolatey) (#1066)"
This reverts commit 932ec6a0a00f7d2fb9cb3fca2fd4bf7ee74d9ce7.
Revert "Added AIMP music player (#1064)"
This reverts commit d1a4a67a45335450cd82d4960ddf4b8a0e565eef.
Revert "Update inputXML.xaml (#1062)"
This reverts commit 2db4cb556edfce9602f931e37b3ee4f59d9ecf7f.
Revert "Update applications.json (#1063)"
This reverts commit ce7edbd60dda92a00293bf2f727b44af63165838.
Revert ": Add ZeroTier One to utilities menu (#1061)"
This reverts commit 783a9657d0c6a08a9e9ef6e19bd461c8af7c1420.
---------
Co-authored-by: Justawildwolf <62820836+blusewill@users.noreply.github.com>
Co-authored-by: Tim Stone <github@tsdev.au>
Co-authored-by: Will Barnard <5012445+mrwillbarnz@users.noreply.github.com>
Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
* Compile Winutil
* Invoke-WPFRunspace argument fix (#1497)
* Compile Winutil
* Fixes, Changes & Features Added (Broken links & Comments) (#1476)
* Fixes & Changes (Broken links & Comments)
- Snappy Driver Installer Origin
Github source code deprecated. Replaced with SourceForge official source code site.
- Spacedrive File Manager
"spacedrive.org" not working. Changed to official site.
**Recent Alpha ver 0.2.0 - crashing on install for Win10+ (not tested in "lower" win versions), may be better to remove overall or place on standby.**
- Xtreme Download Manager
Web Integration not working for chromium based browser.
**Deprecated by Manifest V3, no official update release.**
* Update applications.json
Reverted winget for Spacedrive to original.
Spacedrive.FileSystem -> spacedrive.Spacedrive
* Fix for Portmaster [Wrong repo/winget]
* Choco Safing Portmaster
* Added Apps Request
- Added TeCno Account Switcher
Resolves Feature Request n.6° #1451
- Added ATLauncher
- Added OP Auto Clicker
- Added Motrix Download Manager
Resolves Feature Request #1443
* Fixed Panel Numbers
* Added Thonny Python IDE
- Feature Request
#1451
* Update applications.json
fix few missing values
* Update applications.json
add winget thonny
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Fixed typo: latancy to latency (#1492)
* Compile Winutil
* Update inputXML.xaml (#1462)
* Compile Winutil
* Update .gitignore
* add Dax Studio program to the Development category (#1500)
* Compile Winutil
* Add GitHub CLI to applications (#1460)
* Added GitHub CLI to applications
GitHub cli is the command line interface offered by github alongside
github desktop.
For more information see: https://github.com/cli/cli.
Installation instructions taken from: https://github.com/cli/cli#windows
* spelling: removed accidental dot
* Compile Winutil
* Add Vesktop to applications.json (#1461)
* Add Vesktop to applications.json
* fix syntax error
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Add some apps (#1466)
* Add some apps
* Fix WPFInstallopenhashtab
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* adds helix to development tools (#1469)
* Compile Winutil
* Add tooltips to config checkboxes (#1470)
* Fix typo
* Update winutil.ps1
* Update winutil.ps1
Add tooltips to checkboxes in config session and rewrite so to make things more clear as to what each tweak does
* Revert "Update winutil.ps1"
This reverts commit aaa69c473ff814a7de9e4f7e4591fa5c0f786ffc.
* Add applications
Added Sonarr, Radarr, Prowlarr and Bazarr in response to an github issue
* Add applications
Added applications to the GUI
* Revert "Add applications"
This reverts commit e5fba2b4ebe8df138aed396e55f3fcee62224cbc.
* Revert "Add applications"
This reverts commit 55ff75a65c563dd649e6cac4868a8484a71656d5.
* Edit xaml files
Editing the xaml files so the changes persist upon compilation
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Add Mumble (#1481)
Add Mumble to Communications category.
* Compile Winutil
* Added 'Stremio' (#1473)
* Compile Winutil
* Update applications.json
Added 'Stremio'
* Compile Winutil
---------
Co-authored-by: REVENGE977 <REVENGE977@users.noreply.github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Add the Mullvad Browser (#1475)
* add mullvad browser
* Missing tab
* fix format
---------
Co-authored-by: Kristjan <krissiomar@gmail.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Added some Applications (#1484)
* Update applications.json
Add:
- Rancher Desktop
- ManicTime
- qFlipper
- ModernFlyouts
- ZoomIt
- StartAllBack
- Wintoys
- Minecraft Launcher
* Update applications.json
added:
- Arduino IDE
- Whatsapp
* Update applications.json
corrected spacing
* Update applications.json
fixed winget commands
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Added WinMerge Application in Development category. (#1485)
WinMerge is an Open Source differencing and merging tool for Windows.
* Compile Winutil
* Fix few app links and add app (issues/1478) (#1495)
* Update some app links
* Update winutil.ps1
Date update
* Add Syncthingtray
Related to the issue: https://github.com/ChrisTitusTech/winutil/issues/1478
* Update applications.json
update putty link
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Update applications.json
* Compile Winutil
* App fix and sort
* Add Dual Monitor tools to applications.json (#1504)
* Add Dual Monitor tools to applications.json
* Update applications.json
* Update applications.json
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
---------
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: Samq64 <81489795+Samq64@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Carter <60557606+Carterpersall@users.noreply.github.com>
Co-authored-by: Justawildwolf <62820836+blusewill@users.noreply.github.com>
Co-authored-by: Tim Stone <github@tsdev.au>
Co-authored-by: Will Barnard <5012445+mrwillbarnz@users.noreply.github.com>
Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
Co-authored-by: ogfrm <96927197+ogfrm@users.noreply.github.com>
Co-authored-by: v-Kaefer <128633407+v-Kaefer@users.noreply.github.com>
Co-authored-by: Shashank B N <117376750+Athena-2003@users.noreply.github.com>
Co-authored-by: Alex Schwartz <alexschwartz01@gmail.com>
Co-authored-by: André Gonzalez <lopescg@gmail.com>
Co-authored-by: David Hardt <contact@hardt.ai>
Co-authored-by: Choccy Milk <152878702+choccyy-milk@users.noreply.github.com>
Co-authored-by: OmriOn <omri.hermon@gmail.com>
Co-authored-by: Breno Fernandes <fernandesopa@gmail.com>
Co-authored-by: Yuri Gabriel <97139700+Yuuh15@users.noreply.github.com>
Co-authored-by: Filip Zurek <zurfil@tuta.com>
Co-authored-by: H4D3S <32039975+REVENGE977@users.noreply.github.com>
Co-authored-by: REVENGE977 <REVENGE977@users.noreply.github.com>
Co-authored-by: KristjanOmar <117899282+KristjanOmar@users.noreply.github.com>
Co-authored-by: Kristjan <krissiomar@gmail.com>
Co-authored-by: MyDrift <personal@mdiana.ch>
Co-authored-by: Akash Singh <52990376+Akash-S1999@users.noreply.github.com>
Co-authored-by: Roc Wang <rocwang911@gmail.com>
Co-authored-by: José Roberto Sánchez <jose_roberto_ss@hotmail.com>
2024-01-30 12:36:38 -06:00
$imgVersion = ( Get-WindowsImage -ImagePath $mountDir \ sources \ install . wim -Index $index ) . Version
# Detect image version to avoid performing MicroWin processing on Windows 8 and earlier
2024-03-21 18:23:24 -05:00
if ( ( Test-CompatibleImage $imgVersion $ ( [ System.Version ] :: new ( 10 , 0 , 10240 , 0 ) ) ) -eq $false )
Test 2024 01 25 (#1505)
* Update applications.json
Fake app add made by linux fanboy
* Compile Winutil
* Update screen-install.png (#1464)
* Compile Winutil
* Update files (#1487)
- Add detections for whether the image to be processed by MicroWin is Windows 10 or later
- Add procedure to clear the indexes ComboBox (WinForms term) every time an ISO is specified
Co-authored-by: Chris Titus <contact@christitus.com>
* Lots of changes to Invoke-WPFFixesUpdate (#1467)
* Add Guilded into Communication Tab (#1059)
* Add Guilded into Communication Tab
* Remove Choco Package due to there is no Chocolatey packages
* : Add ZeroTier One to utilities menu (#1061)
* Update applications.json (#1063)
Update to add [SuperF4 - Stefan Sundin](https://stefansundin.github.io/superf4/), as mentioned in #374 [Choco - SuperF4](https://community.chocolatey.org/packages/superf4) maintained by Xav83. [WinGet - SuperF4](https://winstall.app/apps/StefanSundin.Superf4) SuperF4 and Winget package published by Stefan Sundin.
* Update inputXML.xaml (#1062)
Updated inputXML.xaml to account for addition of the SuperF4 software.
* Added AIMP music player (#1064)
* Add Ventoy (Chocolatey Only Package) & .NET Core Runtime (Winget & Chocolatey) (#1066)
* Tidy up SuperF4 line.
* Tidy up SuperF4 line.
Used spaces instead of tabs.
* Add dotnet 7.0.11 Desktop Runtime
* Undone changes to SuperF4 line
* Addition of Ventoy (chocolatey only) package
* Comment Spacing, Indentation, and Capitalization (#1084)
* Comment Spacing, Indentation, and Capitalization
* Comment Grammar and Spacing
Makes grammar in comments better and more consistent
Adds space before comment and centers word in `Write-Host` commands
* More Grammar and Formatting
* Add some comments
* Populate PlaceHolder comments in functions
Files I found that has issues:
Get-WinUtilRegistry.ps1
Install-WinUtilWinget.ps1
Invoke-WinUtilDarkMode.ps1
Remove-WinUtilAPPX.ps1
Test-WinUtilPackageManager.ps1
Update-WinUtilProgramWinget.ps1
Invoke-WPFUpdatessecurity.ps1
* Tweak a few more comments
* Tweak another write-host statement
* Undo Catch statement adjustment
It's outside of the scope of this pull request
* Fix indentation
* Description, Progress Bar, and nuke step 10
- Added a full description of exactly what the function does
- Replaced `Write-Host`s with multiple progress bars
- Might've added too many, but I didn't want to add one for just a few of them as I want the user to be able to see all tasks that have been performed, just like with `Write-Host`
- Removed Step 10
- Only applies to Windows 8
* Add Aggressive Parameter, Actually Force Check for Updates
* Add aggressive parameter and add system repair step
* Lots of changes
* Revert Stuff
This reverts commit 199a92e26e418c544691a0b6eda5d6e7f3e56b8d.
Revert "Comment Spacing, Indentation, and Capitalization (#1084)"
This reverts commit acc2b5b243654156de4c6bdbcc5f7b72e4cdf578.
Revert "Add Ventoy (Chocolatey Only Package) & .NET Core Runtime (Winget & Chocolatey) (#1066)"
This reverts commit 932ec6a0a00f7d2fb9cb3fca2fd4bf7ee74d9ce7.
Revert "Added AIMP music player (#1064)"
This reverts commit d1a4a67a45335450cd82d4960ddf4b8a0e565eef.
Revert "Update inputXML.xaml (#1062)"
This reverts commit 2db4cb556edfce9602f931e37b3ee4f59d9ecf7f.
Revert "Update applications.json (#1063)"
This reverts commit ce7edbd60dda92a00293bf2f727b44af63165838.
Revert ": Add ZeroTier One to utilities menu (#1061)"
This reverts commit 783a9657d0c6a08a9e9ef6e19bd461c8af7c1420.
---------
Co-authored-by: Justawildwolf <62820836+blusewill@users.noreply.github.com>
Co-authored-by: Tim Stone <github@tsdev.au>
Co-authored-by: Will Barnard <5012445+mrwillbarnz@users.noreply.github.com>
Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
* Compile Winutil
* Invoke-WPFRunspace argument fix (#1497)
* Compile Winutil
* Fixes, Changes & Features Added (Broken links & Comments) (#1476)
* Fixes & Changes (Broken links & Comments)
- Snappy Driver Installer Origin
Github source code deprecated. Replaced with SourceForge official source code site.
- Spacedrive File Manager
"spacedrive.org" not working. Changed to official site.
**Recent Alpha ver 0.2.0 - crashing on install for Win10+ (not tested in "lower" win versions), may be better to remove overall or place on standby.**
- Xtreme Download Manager
Web Integration not working for chromium based browser.
**Deprecated by Manifest V3, no official update release.**
* Update applications.json
Reverted winget for Spacedrive to original.
Spacedrive.FileSystem -> spacedrive.Spacedrive
* Fix for Portmaster [Wrong repo/winget]
* Choco Safing Portmaster
* Added Apps Request
- Added TeCno Account Switcher
Resolves Feature Request n.6° #1451
- Added ATLauncher
- Added OP Auto Clicker
- Added Motrix Download Manager
Resolves Feature Request #1443
* Fixed Panel Numbers
* Added Thonny Python IDE
- Feature Request
#1451
* Update applications.json
fix few missing values
* Update applications.json
add winget thonny
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Fixed typo: latancy to latency (#1492)
* Compile Winutil
* Update inputXML.xaml (#1462)
* Compile Winutil
* Update .gitignore
* add Dax Studio program to the Development category (#1500)
* Compile Winutil
* Add GitHub CLI to applications (#1460)
* Added GitHub CLI to applications
GitHub cli is the command line interface offered by github alongside
github desktop.
For more information see: https://github.com/cli/cli.
Installation instructions taken from: https://github.com/cli/cli#windows
* spelling: removed accidental dot
* Compile Winutil
* Add Vesktop to applications.json (#1461)
* Add Vesktop to applications.json
* fix syntax error
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Add some apps (#1466)
* Add some apps
* Fix WPFInstallopenhashtab
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* adds helix to development tools (#1469)
* Compile Winutil
* Add tooltips to config checkboxes (#1470)
* Fix typo
* Update winutil.ps1
* Update winutil.ps1
Add tooltips to checkboxes in config session and rewrite so to make things more clear as to what each tweak does
* Revert "Update winutil.ps1"
This reverts commit aaa69c473ff814a7de9e4f7e4591fa5c0f786ffc.
* Add applications
Added Sonarr, Radarr, Prowlarr and Bazarr in response to an github issue
* Add applications
Added applications to the GUI
* Revert "Add applications"
This reverts commit e5fba2b4ebe8df138aed396e55f3fcee62224cbc.
* Revert "Add applications"
This reverts commit 55ff75a65c563dd649e6cac4868a8484a71656d5.
* Edit xaml files
Editing the xaml files so the changes persist upon compilation
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Add Mumble (#1481)
Add Mumble to Communications category.
* Compile Winutil
* Added 'Stremio' (#1473)
* Compile Winutil
* Update applications.json
Added 'Stremio'
* Compile Winutil
---------
Co-authored-by: REVENGE977 <REVENGE977@users.noreply.github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Add the Mullvad Browser (#1475)
* add mullvad browser
* Missing tab
* fix format
---------
Co-authored-by: Kristjan <krissiomar@gmail.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Added some Applications (#1484)
* Update applications.json
Add:
- Rancher Desktop
- ManicTime
- qFlipper
- ModernFlyouts
- ZoomIt
- StartAllBack
- Wintoys
- Minecraft Launcher
* Update applications.json
added:
- Arduino IDE
- Whatsapp
* Update applications.json
corrected spacing
* Update applications.json
fixed winget commands
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Added WinMerge Application in Development category. (#1485)
WinMerge is an Open Source differencing and merging tool for Windows.
* Compile Winutil
* Fix few app links and add app (issues/1478) (#1495)
* Update some app links
* Update winutil.ps1
Date update
* Add Syncthingtray
Related to the issue: https://github.com/ChrisTitusTech/winutil/issues/1478
* Update applications.json
update putty link
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Update applications.json
* Compile Winutil
* App fix and sort
* Add Dual Monitor tools to applications.json (#1504)
* Add Dual Monitor tools to applications.json
* Update applications.json
* Update applications.json
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
---------
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: Samq64 <81489795+Samq64@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Carter <60557606+Carterpersall@users.noreply.github.com>
Co-authored-by: Justawildwolf <62820836+blusewill@users.noreply.github.com>
Co-authored-by: Tim Stone <github@tsdev.au>
Co-authored-by: Will Barnard <5012445+mrwillbarnz@users.noreply.github.com>
Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
Co-authored-by: ogfrm <96927197+ogfrm@users.noreply.github.com>
Co-authored-by: v-Kaefer <128633407+v-Kaefer@users.noreply.github.com>
Co-authored-by: Shashank B N <117376750+Athena-2003@users.noreply.github.com>
Co-authored-by: Alex Schwartz <alexschwartz01@gmail.com>
Co-authored-by: André Gonzalez <lopescg@gmail.com>
Co-authored-by: David Hardt <contact@hardt.ai>
Co-authored-by: Choccy Milk <152878702+choccyy-milk@users.noreply.github.com>
Co-authored-by: OmriOn <omri.hermon@gmail.com>
Co-authored-by: Breno Fernandes <fernandesopa@gmail.com>
Co-authored-by: Yuri Gabriel <97139700+Yuuh15@users.noreply.github.com>
Co-authored-by: Filip Zurek <zurfil@tuta.com>
Co-authored-by: H4D3S <32039975+REVENGE977@users.noreply.github.com>
Co-authored-by: REVENGE977 <REVENGE977@users.noreply.github.com>
Co-authored-by: KristjanOmar <117899282+KristjanOmar@users.noreply.github.com>
Co-authored-by: Kristjan <krissiomar@gmail.com>
Co-authored-by: MyDrift <personal@mdiana.ch>
Co-authored-by: Akash Singh <52990376+Akash-S1999@users.noreply.github.com>
Co-authored-by: Roc Wang <rocwang911@gmail.com>
Co-authored-by: José Roberto Sánchez <jose_roberto_ss@hotmail.com>
2024-01-30 12:36:38 -06:00
{
$msg = " This image is not compatible with MicroWin processing. Make sure it isn't a Windows 8 or earlier image. "
$dlg_msg = $msg + " `n `n If you want more information, the version of the image selected is $( $imgVersion ) `n `n If an image has been incorrectly marked as incompatible, report an issue to the developers. "
Write-Host $msg
[ System.Windows.MessageBox ] :: Show ( $dlg_msg , " Winutil " , [ System.Windows.MessageBoxButton ] :: OK , [ System.Windows.MessageBoxImage ] :: Exclamation )
return
}
2023-11-28 16:11:11 -06:00
$mountDirExists = Test-Path $mountDir
$scratchDirExists = Test-Path $scratchDir
if ( -not $mountDirExists -or -not $scratchDirExists )
{
Write-Error " Required directories ' $mountDirExists ' ' $scratchDirExists ' and do not exist. "
return
}
try {
Write-Host " Mounting Windows image. This may take a while. "
2024-03-28 14:39:23 -05:00
Mount-WindowsImage -ImagePath " $mountDir \sources\install.wim " -Index $index -Path " $scratchDir "
if ( $ ? )
{
Write-Host " Mounting complete! Performing removal of applications... "
}
else
{
Write-Host " Could not mount image. Exiting... "
return
}
2023-11-28 16:11:11 -06:00
if ( $injectDrivers )
{
$driverPath = $sync . MicrowinDriverLocation . Text
if ( Test-Path $driverPath )
{
Write-Host " Adding Windows Drivers image( $scratchDir ) drivers( $driverPath ) "
Test 2024 03 30 (#1852)
* Winget Sources fix (#1773)
- Sometimes, if Winget is installed under user-scope, the source isn't properly installed so that the Admin user can properly use Winget.
- This change installs the sources directly from the Winget CDN.
- Fixes #1771
https://github.com/microsoft/winget-cli/discussions/3258#discussioncomment-5951658
* Compile Winutil
* Finished conversion of DISM commands into DISM cmdlets (#1776)
* Continue conversion
Began 2nd stage of DISM command conversion. Almost all commands have been replaced by cmdlets
* Continue conversion (part 2)
Finished part 2 of DISM command to cmdlet conversion
* Add New Toggle to Disable/Enable Widgets found in Taskbar (#1768)
* Compile Winutil
* Fix Search Box Not Showing Apps/Tweaks Checkboxes When typing out Capital-Letters (#1770)
* Compile Winutil
* Add Microsoft Power Automate and Swift toolchain (#1774)
* Add power automate
* Add swift toolchain
* Compile Winutil
* Restart Explorer after Applying/Undoing Classic Right-Click Advance Tweak (#1778)
In general, I've added two lines of code to get the explorer process using 'Get-Process', then passed the process object into 'Stop-Process', Windows will automatically restart explorer, so there's no need to run a new process for explorer.
Note: restarting explorer in the UndoScript might not be necessary, as it works just fine without it, that's according to the tests done by the author of this commit.
* Compile Winutil
* editing edgeremoval.ps1 (#1834)
* editing edgeremoval.ps1
* Compile Winutil
---------
Co-authored-by: DaEpicR <DaEpicR@users.noreply.github.com>
* Compile Winutil
* Update Github Actions Auto Close Issues (#1801)
* Update Github Actions Auto Close Issues
* Add try-catch & Error Logging in Github Actions Auto Close Issues
* Add a Break Statement To Skip Checking The Remaining Labels of an Issue in Github Actions Auto Close Issues
* Add tweak (#1837)
* Compile Winutil
* Disable SCOOBE in WPFTweaksTele (#1832)
* Compile Winutil
* Fix 'Disable Storage Sense' Tweak in 'tweaks.json' File (#1843)
This was pointed out in GitHub issue https://github.com/ChrisTitusTech/winutil/issues/1838
* Compile Winutil
* Add 'UndoScript' to 'Enable End Task With Right Click' Tweak in 'tweaks.json' File (#1842)
* Compile Winutil
* - Changed version check for Winget to keep Winget updated to latest version and a couple formatting fixes. (#1829)
* Compile Winutil
* Add 'UndoScript' to 'Disable Hibernation' Tweak in 'teaks.json' File (#1799)
* Compile Winutil
* Added Requested Apps and Update Command Example in 'README.md' File (#1795)
* Add 'UltraVNC' App to 'application.json' File
* Update Command Example under sub-section 'Automation'
This Commit and its changes are related to issue #1767 , url for issue: https://github.com/ChrisTitusTech/winutil/issues/1767
* Add 'OrcaSlicer' App to 'application.json' File
* Add 'Tixati' App to 'application.json' File
* Add 'Unigram' App to 'application.json' File
* Add 'PDFgear' App to 'application.json' File
* Add 'Windows Firewall Control' App to 'application.json' File
* Add 'VistaSwitcher' App to 'application.json' File
* Add 'Windows Auto Dark Mode' App to 'application.json' File
* Add 'CapFrameX' App to 'application.json' File
* Update The Link for 'Unigram' App in 'application.json' File
* Add 'Magic Wormhole' App to 'application.json' File
* Compile Winutil
* Add apps from #250 (#1787)
* Add SQL management
* Add java runtimes
* Add azure data studio
* Compile Winutil
* Update inputXML.xaml (#1845)
- Added UseLayoutRounding="True"
- This may help fix some cases where text may look blurry on screen for some people.
* Compile Winutil
* A Temporary Fix to Compilation Program in 'Compile.ps1' Script (#1844)
For whatever reason, Compiling using the 'Compile.ps1' Script when there's a Single Quote, in the description of an App for example, it'll try "escaping" it by adding another Single Quote, which's kind of weird.
Before there was an Apostrophe, and it'll Compile into Question Marks, probably because the Compile Script doesn't know what an Apostrophe is, or it can't escape it (or for another reason, didn't dig deeper into it), in the end I've made it neither an Apostrophe nor a Single Quote, just the sentence without contractions (Without shortening by combining words).
* Compile Winutil
* Update Winget Install and Uninstall / Add NuGet and Microsoft.Winget.Client Modules (#1830)
* - Changed how WinGet installs and uninstalls are handled, by utilizing and .
* Update Winget Install and Uninstall / Add NuGet and Microsoft.Winget.Client Modules
- Fixed commands for installing and uninstalling programs through WinGet.
- Added NuGet Package Providers (thanks @Marterich)
- Added Microsoft.WinGet.Client Module (thanks @Marterich)
* Compile Winutil
* Reopen #1747 PR (#1818)
* Add fxsound
* Add simplenote
* Add flow launcher
* Add CMake
* Add musescore
* Add jpegview
* Add explorer patcher
* Add lockhunter
* Add BRU
* Add spacesniffer
* Add Quick Look
* Add harmonoid
* Add revolt
* Add link shell extensions
* Add WizFile
* Add HWMonitor
* Add XnView
* Add tabby.sh
* Add signalRGB
* Add autoruns
* Fix typo for 'Autoruns' App in 'applications.json' File
* Remove 'Explorer Patcher' App in 'applications.json' File
as mentioned by Chris's Feedback on https://github.com/ChrisTitusTech/winutil/pull/1818 PR, Explorer Patcher is known to cause Stability Related Issues to Users who use it, removing it from the Applications List would be a better/wiser decision.
* Re-Add 'fxsound' App after Resolving Merge Conflict
* Re-Add 'tabby.sh' App after Resolving Merge Conflict
---------
Co-authored-by: ModernTTY <165050080+ModernTTY@users.noreply.github.com>
* Compile Winutil
* Fix Github Actions Auto Close Issues not leaving Issues Open (#1847)
* Compile Winutil
* Fix Robocopy Not Copying for Users who have a Space in their name (#1851)
This was pointed out in https://github.com/ChrisTitusTech/winutil/issues/1848 issue
* Compile Winutil
* bug fixes from bad pr
* Compile Winutil
* Better JSON Parsing for Compile Script!! (#1850)
* Better JSON Parsing for Compile Script!!
Rendering Special XML Character should be possible when parsing json files that have some of these special characters, and without the need to worry about them. Try these changes to see what will be affected, and what won't be.
* Undo #1844 PR Changes
The problem that #1844 PR Tried to resolve temporarly, should now be fixed permanently with the previous changes to 'Compile.ps1' Script.
* Compile Winutil
* OO Shutup 10 Tweaks revamped (#1828)
* Add new OOSU10 configs
* Removed old OOSU config, added install and uninstall calls for the new conrfigs
* change filenames, centralize logic in Invoke-WPFOOSU
* Change Config Paths to the CTT main repo
* removed whitespace
* Add -Wait to avoid race condition when OOSU is run together with temp file cleanup
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Add catch for restore point errors
* Compile Winutil
---------
Co-authored-by: Rux <jonathan.e.rux@ruxunderscore.com>
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Mr.k <mineshtine28546271@gmail.com>
Co-authored-by: ModernTTY <165050080+ModernTTY@users.noreply.github.com>
Co-authored-by: Straight <107145976+DaEpicR@users.noreply.github.com>
Co-authored-by: DaEpicR <DaEpicR@users.noreply.github.com>
Co-authored-by: Consejos Tecnológicos de Edu <139326298+lCTdE@users.noreply.github.com>
Co-authored-by: Martin Wiethan <47688561+Marterich@users.noreply.github.com>
2024-04-20 16:38:43 -05:00
Add-WindowsDriver -Path " $scratchDir " -Recurse -Driver " $driverPath "
2023-11-28 16:11:11 -06:00
}
else
{
Write-Host " Path to drivers is invalid continuing without driver injection "
}
}
Write-Host " Remove Features from the image "
Remove-Features -keepDefender: $keepDefender
Write-Host " Removing features complete! "
Write-Host " Removing Appx Bloat "
if ( ! $keepPackages )
{
Remove-Packages
}
if ( ! $keepProvisionedPackages )
{
2024-01-03 09:49:23 -06:00
Remove-ProvisionedPackages -keepSecurity: $keepDefender
2023-11-28 16:11:11 -06:00
}
# special code, for some reason when you try to delete some inbox apps
# we have to get and delete log files directory.
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\System32\LogFiles\WMI\RtBackup " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\System32\WebThreatDefSvc " -Directory
# Defender is hidden in 2 places we removed a feature above now need to remove it from the disk
if ( ! $keepDefender )
{
Write-Host " Removing Defender "
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files\Windows Defender " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files (x86)\Windows Defender "
}
if ( ! $keepEdge )
{
Write-Host " Removing Edge "
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files (x86)\Microsoft " -mask " *edge* " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files\Microsoft " -mask " *edge* " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\SystemApps " -mask " *edge* " -Directory
}
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\DiagTrack " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\InboxApps " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\System32\SecurityHealthSystray.exe "
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\System32\LocationNotificationWindows.exe "
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files (x86)\Windows Photo Viewer " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files\Windows Photo Viewer " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files (x86)\Windows Media Player " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files\Windows Media Player " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files (x86)\Windows Mail " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files\Windows Mail " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files (x86)\Internet Explorer " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Program Files\Internet Explorer " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\GameBarPresenceWriter "
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\System32\OneDriveSetup.exe "
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\System32\OneDrive.ico "
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\SystemApps " -mask " *Windows.Search* " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\SystemApps " -mask " *narratorquickstart* " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\SystemApps " -mask " *Xbox* " -Directory
Remove-FileOrDirectory -pathToDelete " $( $scratchDir ) \Windows\SystemApps " -mask " *ParentalControls* " -Directory
Write-Host " Removal complete! "
Write-Host " Create unattend.xml "
New-Unattend
Write-Host " Done Create unattend.xml "
Write-Host " Copy unattend.xml file into the ISO "
New-Item -ItemType Directory -Force -Path " $( $scratchDir ) \Windows\Panther "
Copy-Item " $env:temp \unattend.xml " " $( $scratchDir ) \Windows\Panther\unattend.xml " -force
New-Item -ItemType Directory -Force -Path " $( $scratchDir ) \Windows\System32\Sysprep "
Copy-Item " $env:temp \unattend.xml " " $( $scratchDir ) \Windows\System32\Sysprep\unattend.xml " -force
Copy-Item " $env:temp \unattend.xml " " $( $scratchDir ) \unattend.xml " -force
Write-Host " Done Copy unattend.xml "
Write-Host " Create FirstRun "
New-FirstRun
Write-Host " Done create FirstRun "
Write-Host " Copy FirstRun.ps1 into the ISO "
Copy-Item " $env:temp \FirstStartup.ps1 " " $( $scratchDir ) \Windows\FirstStartup.ps1 " -force
Write-Host " Done copy FirstRun.ps1 "
Write-Host " Copy link to winutil.ps1 into the ISO "
$desktopDir = " $( $scratchDir ) \Windows\Users\Default\Desktop "
New-Item -ItemType Directory -Force -Path " $desktopDir "
2024-01-02 15:45:06 -06:00
dism / English / image : $ ( $scratchDir ) / set-profilepath : " $( $scratchDir ) \Windows\Users\Default "
2023-11-28 16:11:11 -06:00
$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 )
if ( Test-Path -Path " $env:TEMP \cttlogo.png " )
{
$pngPath = " $env:TEMP \cttlogo.png "
$icoPath = " $env:TEMP \cttlogo.ico "
Test 2023 12 19 (#1294)
* Compile Winutil
* Issue #1283, #1280 fixes, more (#1288)
* Explorer Fix
* Wifi, Explorer Crash, WinUtil Icon fixes. First attempt at white theme
* White theme
* Fix for clashing microwin directories if process fails, now new directory will be generated
* * Tested latest Windows 10 (22H2) images work fine
* Made dialog box more clear for issue #1283
* Added better logic for handling takeown /D flag for different locals issue #1280
* Refreshed the UI to more modern look
* Improved white theme
* Regrouped Tweak tab to make more sense
* Advanced tweaks were in a separate column but the button applied both Essential and advanced now they are in the same column and button applies both
* All instant action buttons were moved to Customize preferences column
* Explorer lockup Fix
* Wifi, Explorer Crash, WinUtil Icon fixes.
* Fix for clashing microwin directories if process fails, now new directory will be generated
* Merge all
* Theme improvement, adding icon to the shortcut
* Ability to download oscdimg from github, reorginizing Apps to fit better on more (smaller screens)
* Fixing release branch to WinUtil
* Adding double click to fullscreen
* Update Get-Oscdimg.ps1
---------
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Update winutil.ps1
* remove merc and thorium
* Ashlyn Programs
* Also inject drivers into boot.wim
* copy #1291
new branch
---------
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Cedric Lewe <0skillallluck@pm.me>
2023-12-19 13:55:55 -06:00
ConvertTo-Icon -bitmapPath $pngPath -iconPath $icoPath
2023-11-28 16:11:11 -06:00
Write-Host " ICO file created at: $icoPath "
Copy-Item " $env:TEMP \cttlogo.png " " $( $scratchDir ) \Windows\cttlogo.png " -force
Test 2023 12 19 (#1294)
* Compile Winutil
* Issue #1283, #1280 fixes, more (#1288)
* Explorer Fix
* Wifi, Explorer Crash, WinUtil Icon fixes. First attempt at white theme
* White theme
* Fix for clashing microwin directories if process fails, now new directory will be generated
* * Tested latest Windows 10 (22H2) images work fine
* Made dialog box more clear for issue #1283
* Added better logic for handling takeown /D flag for different locals issue #1280
* Refreshed the UI to more modern look
* Improved white theme
* Regrouped Tweak tab to make more sense
* Advanced tweaks were in a separate column but the button applied both Essential and advanced now they are in the same column and button applies both
* All instant action buttons were moved to Customize preferences column
* Explorer lockup Fix
* Wifi, Explorer Crash, WinUtil Icon fixes.
* Fix for clashing microwin directories if process fails, now new directory will be generated
* Merge all
* Theme improvement, adding icon to the shortcut
* Ability to download oscdimg from github, reorginizing Apps to fit better on more (smaller screens)
* Fixing release branch to WinUtil
* Adding double click to fullscreen
* Update Get-Oscdimg.ps1
---------
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Update winutil.ps1
* remove merc and thorium
* Ashlyn Programs
* Also inject drivers into boot.wim
* copy #1291
new branch
---------
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Cedric Lewe <0skillallluck@pm.me>
2023-12-19 13:55:55 -06:00
Copy-Item " $env:TEMP \cttlogo.ico " " $( $scratchDir ) \Windows\cttlogo.ico " -force
$shortcut . IconLocation = " c:\Windows\cttlogo.ico "
2023-11-28 16:11:11 -06:00
}
$shortcut . TargetPath = " powershell.exe "
$shortcut . Arguments = " -NoProfile -ExecutionPolicy Bypass -Command `" $command `" "
$shortcut . Save ( )
Write-Host " Shortcut to winutil created at: $shortcutPath "
# *************************** Automation black ***************************
Write-Host " Copy checkinstall.cmd into the ISO "
New-CheckInstall
Copy-Item " $env:temp \checkinstall.cmd " " $( $scratchDir ) \Windows\checkinstall.cmd " -force
Write-Host " Done copy checkinstall.cmd "
Write-Host " Creating a directory that allows to bypass Wifi setup "
New-Item -ItemType Directory -Force -Path " $( $scratchDir ) \Windows\System32\OOBE\BYPASSNRO "
Write-Host " Loading registry "
reg load HKLM \ zCOMPONENTS " $( $scratchDir ) \Windows\System32\config\COMPONENTS "
reg load HKLM \ zDEFAULT " $( $scratchDir ) \Windows\System32\config\default "
reg load HKLM \ zNTUSER " $( $scratchDir ) \Users\Default\ntuser.dat "
reg load HKLM \ zSOFTWARE " $( $scratchDir ) \Windows\System32\config\SOFTWARE "
reg load HKLM \ zSYSTEM " $( $scratchDir ) \Windows\System32\config\SYSTEM "
Write-Host " Disabling Teams "
reg add " HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Communications " / v " ConfigureChatAutoInstall " / t REG_DWORD / d 0 / f > $null 2 > & 1
reg add " HKLM\zSOFTWARE\Policies\Microsoft\Windows\Windows Chat " / v ChatIcon / t REG_DWORD / d 2 / f > $null 2 > & 1
reg add " HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced " / v " TaskbarMn " / t REG_DWORD / d 0 / f > $null 2 > & 1
reg query " HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Communications " / v " ConfigureChatAutoInstall " > $null 2 > & 1
# Write-Host Error code $LASTEXITCODE
Write-Host " Done disabling Teams "
Write-Host " Bypassing system requirements (system image) "
reg add " HKLM\zDEFAULT\Control Panel\UnsupportedHardwareNotificationCache " / v " SV1 " / t REG_DWORD / d 0 / f
reg add " HKLM\zDEFAULT\Control Panel\UnsupportedHardwareNotificationCache " / v " SV2 " / t REG_DWORD / d 0 / f
reg add " HKLM\zNTUSER\Control Panel\UnsupportedHardwareNotificationCache " / v " SV1 " / t REG_DWORD / d 0 / f
reg add " HKLM\zNTUSER\Control Panel\UnsupportedHardwareNotificationCache " / v " SV2 " / t REG_DWORD / d 0 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassCPUCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassRAMCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassSecureBootCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassStorageCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassTPMCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\MoSetup " / v " AllowUpgradesWithUnsupportedTPMOrCPU " / t REG_DWORD / d 1 / f
if ( ! $keepEdge )
{
Write-Host " Removing Edge icon from taskbar "
reg delete " HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband " / v " Favorites " / f > $null 2 > & 1
reg delete " HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband " / v " FavoritesChanges " / 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
Write-Host " Edge icon removed from taskbar "
}
reg add " HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Search " / v " SearchboxTaskbarMode " / t REG_DWORD / d 0 / f
Write-Host " Setting all services to start manually "
reg add " HKLM\zSOFTWARE\CurrentControlSet\Services " / v Start / t REG_DWORD / d 3 / f
# Write-Host $LASTEXITCODE
Write-Host " Enabling Local Accounts on OOBE "
reg add " HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\OOBE " / v " BypassNRO " / t REG_DWORD / d " 1 " / f
Write-Host " Disabling Sponsored Apps "
reg add " HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager " / v " OemPreInstalledAppsEnabled " / t REG_DWORD / d 0 / f
reg add " HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager " / v " PreInstalledAppsEnabled " / t REG_DWORD / d 0 / f
reg add " HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager " / v " SilentInstalledAppsEnabled " / t REG_DWORD / d 0 / f
reg add " HKLM\zSOFTWARE\Policies\Microsoft\Windows\CloudContent " / v " DisableWindowsConsumerFeatures " / t REG_DWORD / d 1 / f
reg add " HKLM\zSOFTWARE\Microsoft\PolicyManager\current\device\Start " / v " ConfigureStartPins " / t REG_SZ / d '{\"pinnedList\": [{}]}' / f
Write-Host " Done removing Sponsored Apps "
Write-Host " Disabling Reserved Storage "
reg add " HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager " / v " ShippedWithReserves " / t REG_DWORD / d 0 / f
Write-Host " Changing theme to dark. This only works on Activated Windows "
reg add " HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize " / v " AppsUseLightTheme " / t REG_DWORD / d 0 / f
reg add " HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize " / v " SystemUsesLightTheme " / t REG_DWORD / d 0 / f
} catch {
Write-Error " An unexpected error occurred: $_ "
} finally {
Write-Host " Unmounting Registry... "
reg unload HKLM \ zCOMPONENTS
reg unload HKLM \ zDEFAULT
reg unload HKLM \ zNTUSER
reg unload HKLM \ zSOFTWARE
reg unload HKLM \ zSYSTEM
Write-Host " Cleaning up image... "
2024-01-02 15:45:06 -06:00
dism / English / image : $scratchDir / Cleanup-Image / StartComponentCleanup / ResetBase
2023-11-28 16:11:11 -06:00
Write-Host " Cleanup complete. "
Write-Host " Unmounting image... "
2024-03-28 14:39:23 -05:00
Dismount-WindowsImage -Path $scratchDir -Save
2023-11-28 16:11:11 -06:00
}
try {
Write-Host " Exporting image into $mountDir \sources\install2.wim "
2024-03-28 14:39:23 -05:00
Export-WindowsImage -SourceImagePath " $mountDir \sources\install.wim " -SourceIndex $index -DestinationImagePath " $mountDir \sources\install2.wim " -CompressionType " Max "
2023-11-28 16:11:11 -06:00
Write-Host " Remove old ' $mountDir \sources\install.wim' and rename $mountDir \sources\install2.wim "
Remove-Item " $mountDir \sources\install.wim "
Rename-Item " $mountDir \sources\install2.wim " " $mountDir \sources\install.wim "
if ( -not ( Test-Path -Path " $mountDir \sources\install.wim " ) )
{
Test 2024 01 03 (#1384)
* Increase performance during loading. (#1348)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Custom save targets for MicroWin ISOs (#1346)
* Workaround for Explorer freezes
Some people have reported that setting the Event Log service to Automatic and starting it can (temporarily) fix Explorer freezes.
This change detects whether the next service in the list is "EventLog" and skips it
* Allow user to save MicroWin ISOs anywhere
Adds a SaveFileDialog component to let the user specify the location of the MicroWin ISO and uses it during creation with oscdimg.
(It uses a Process object from System.Diagnostics because I couldn't get it to work with Start-Process)
* Removed temporary workaround
Removed my version of the workaround in favor of the version from @KonTy (merge PR #1348 first)
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Highly anticipated fix for small screens (#1358)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
* Highly anticipated fix for small screen computers
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Winutil take a long time to create iso file and goes to sleep, this fixes that issue #1343 (#1371)
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Create .gitattributes
* Update .gitattributes
* add winget ventoy package (#1374)
* add winget ventoy package
* convert applications.json to utf-8
* update applications.json again
* Compile Winutil
* Update applications.json
fix encoding
* Compile Winutil
* Fix Encoding and Bad Symbols
* Compile Winutil
* feat: Add more software choices (#1379)
* Compile Winutil
* Update configs.Tests.ps1
* Update winutil.Tests.ps1
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* fix functions for unit tests
* Compile Winutil
* Update Invoke-MicroWin-Helper.ps1
* Compile Winutil
* fix name WPF Close Button
* Update inputXML.xaml
* Compile Winutil
* my bad that wasnt it
* modify unit test for stop on error
* Compile Winutil
* Update unittests.yaml
* Create test
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Compile Winutil
* Make restore points optional, enabled by default (#1380)
* Make restore points optional, enabled by default
* Tweaks order fix if restorepoint is checked
* Compile Winutil
* update unit tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update winutil.Tests.ps1
* tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* fix unit test
* Update winutil.Tests.ps1
* rewrite all pester test for winutil
* Compile Winutil
* fix handle is invalid error
* final unit test
---------
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Munkk <152475628+munkk01@users.noreply.github.com>
Co-authored-by: Kiril Vasilev <Kiril.v92@gmail.com>
2024-01-12 00:34:41 -06:00
Write-Error " Something went wrong and ' $mountDir \sources\install.wim' doesn't exist. Please report this bug to the devs "
2023-11-28 16:11:11 -06:00
return
}
Write-Host " Windows image completed. Continuing with boot.wim. "
# Next step boot image
Write-Host " Mounting boot image $mountDir \sources\boot.wim into $scratchDir "
2024-03-28 14:39:23 -05:00
Mount-WindowsImage -ImagePath " $mountDir \sources\boot.wim " -Index 2 -Path " $scratchDir "
Test 2023 12 19 (#1294)
* Compile Winutil
* Issue #1283, #1280 fixes, more (#1288)
* Explorer Fix
* Wifi, Explorer Crash, WinUtil Icon fixes. First attempt at white theme
* White theme
* Fix for clashing microwin directories if process fails, now new directory will be generated
* * Tested latest Windows 10 (22H2) images work fine
* Made dialog box more clear for issue #1283
* Added better logic for handling takeown /D flag for different locals issue #1280
* Refreshed the UI to more modern look
* Improved white theme
* Regrouped Tweak tab to make more sense
* Advanced tweaks were in a separate column but the button applied both Essential and advanced now they are in the same column and button applies both
* All instant action buttons were moved to Customize preferences column
* Explorer lockup Fix
* Wifi, Explorer Crash, WinUtil Icon fixes.
* Fix for clashing microwin directories if process fails, now new directory will be generated
* Merge all
* Theme improvement, adding icon to the shortcut
* Ability to download oscdimg from github, reorginizing Apps to fit better on more (smaller screens)
* Fixing release branch to WinUtil
* Adding double click to fullscreen
* Update Get-Oscdimg.ps1
---------
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Update winutil.ps1
* remove merc and thorium
* Ashlyn Programs
* Also inject drivers into boot.wim
* copy #1291
new branch
---------
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Cedric Lewe <0skillallluck@pm.me>
2023-12-19 13:55:55 -06:00
if ( $injectDrivers )
{
$driverPath = $sync . MicrowinDriverLocation . Text
if ( Test-Path $driverPath )
{
Write-Host " Adding Windows Drivers image( $scratchDir ) drivers( $driverPath ) "
Test 2024 03 30 (#1852)
* Winget Sources fix (#1773)
- Sometimes, if Winget is installed under user-scope, the source isn't properly installed so that the Admin user can properly use Winget.
- This change installs the sources directly from the Winget CDN.
- Fixes #1771
https://github.com/microsoft/winget-cli/discussions/3258#discussioncomment-5951658
* Compile Winutil
* Finished conversion of DISM commands into DISM cmdlets (#1776)
* Continue conversion
Began 2nd stage of DISM command conversion. Almost all commands have been replaced by cmdlets
* Continue conversion (part 2)
Finished part 2 of DISM command to cmdlet conversion
* Add New Toggle to Disable/Enable Widgets found in Taskbar (#1768)
* Compile Winutil
* Fix Search Box Not Showing Apps/Tweaks Checkboxes When typing out Capital-Letters (#1770)
* Compile Winutil
* Add Microsoft Power Automate and Swift toolchain (#1774)
* Add power automate
* Add swift toolchain
* Compile Winutil
* Restart Explorer after Applying/Undoing Classic Right-Click Advance Tweak (#1778)
In general, I've added two lines of code to get the explorer process using 'Get-Process', then passed the process object into 'Stop-Process', Windows will automatically restart explorer, so there's no need to run a new process for explorer.
Note: restarting explorer in the UndoScript might not be necessary, as it works just fine without it, that's according to the tests done by the author of this commit.
* Compile Winutil
* editing edgeremoval.ps1 (#1834)
* editing edgeremoval.ps1
* Compile Winutil
---------
Co-authored-by: DaEpicR <DaEpicR@users.noreply.github.com>
* Compile Winutil
* Update Github Actions Auto Close Issues (#1801)
* Update Github Actions Auto Close Issues
* Add try-catch & Error Logging in Github Actions Auto Close Issues
* Add a Break Statement To Skip Checking The Remaining Labels of an Issue in Github Actions Auto Close Issues
* Add tweak (#1837)
* Compile Winutil
* Disable SCOOBE in WPFTweaksTele (#1832)
* Compile Winutil
* Fix 'Disable Storage Sense' Tweak in 'tweaks.json' File (#1843)
This was pointed out in GitHub issue https://github.com/ChrisTitusTech/winutil/issues/1838
* Compile Winutil
* Add 'UndoScript' to 'Enable End Task With Right Click' Tweak in 'tweaks.json' File (#1842)
* Compile Winutil
* - Changed version check for Winget to keep Winget updated to latest version and a couple formatting fixes. (#1829)
* Compile Winutil
* Add 'UndoScript' to 'Disable Hibernation' Tweak in 'teaks.json' File (#1799)
* Compile Winutil
* Added Requested Apps and Update Command Example in 'README.md' File (#1795)
* Add 'UltraVNC' App to 'application.json' File
* Update Command Example under sub-section 'Automation'
This Commit and its changes are related to issue #1767 , url for issue: https://github.com/ChrisTitusTech/winutil/issues/1767
* Add 'OrcaSlicer' App to 'application.json' File
* Add 'Tixati' App to 'application.json' File
* Add 'Unigram' App to 'application.json' File
* Add 'PDFgear' App to 'application.json' File
* Add 'Windows Firewall Control' App to 'application.json' File
* Add 'VistaSwitcher' App to 'application.json' File
* Add 'Windows Auto Dark Mode' App to 'application.json' File
* Add 'CapFrameX' App to 'application.json' File
* Update The Link for 'Unigram' App in 'application.json' File
* Add 'Magic Wormhole' App to 'application.json' File
* Compile Winutil
* Add apps from #250 (#1787)
* Add SQL management
* Add java runtimes
* Add azure data studio
* Compile Winutil
* Update inputXML.xaml (#1845)
- Added UseLayoutRounding="True"
- This may help fix some cases where text may look blurry on screen for some people.
* Compile Winutil
* A Temporary Fix to Compilation Program in 'Compile.ps1' Script (#1844)
For whatever reason, Compiling using the 'Compile.ps1' Script when there's a Single Quote, in the description of an App for example, it'll try "escaping" it by adding another Single Quote, which's kind of weird.
Before there was an Apostrophe, and it'll Compile into Question Marks, probably because the Compile Script doesn't know what an Apostrophe is, or it can't escape it (or for another reason, didn't dig deeper into it), in the end I've made it neither an Apostrophe nor a Single Quote, just the sentence without contractions (Without shortening by combining words).
* Compile Winutil
* Update Winget Install and Uninstall / Add NuGet and Microsoft.Winget.Client Modules (#1830)
* - Changed how WinGet installs and uninstalls are handled, by utilizing and .
* Update Winget Install and Uninstall / Add NuGet and Microsoft.Winget.Client Modules
- Fixed commands for installing and uninstalling programs through WinGet.
- Added NuGet Package Providers (thanks @Marterich)
- Added Microsoft.WinGet.Client Module (thanks @Marterich)
* Compile Winutil
* Reopen #1747 PR (#1818)
* Add fxsound
* Add simplenote
* Add flow launcher
* Add CMake
* Add musescore
* Add jpegview
* Add explorer patcher
* Add lockhunter
* Add BRU
* Add spacesniffer
* Add Quick Look
* Add harmonoid
* Add revolt
* Add link shell extensions
* Add WizFile
* Add HWMonitor
* Add XnView
* Add tabby.sh
* Add signalRGB
* Add autoruns
* Fix typo for 'Autoruns' App in 'applications.json' File
* Remove 'Explorer Patcher' App in 'applications.json' File
as mentioned by Chris's Feedback on https://github.com/ChrisTitusTech/winutil/pull/1818 PR, Explorer Patcher is known to cause Stability Related Issues to Users who use it, removing it from the Applications List would be a better/wiser decision.
* Re-Add 'fxsound' App after Resolving Merge Conflict
* Re-Add 'tabby.sh' App after Resolving Merge Conflict
---------
Co-authored-by: ModernTTY <165050080+ModernTTY@users.noreply.github.com>
* Compile Winutil
* Fix Github Actions Auto Close Issues not leaving Issues Open (#1847)
* Compile Winutil
* Fix Robocopy Not Copying for Users who have a Space in their name (#1851)
This was pointed out in https://github.com/ChrisTitusTech/winutil/issues/1848 issue
* Compile Winutil
* bug fixes from bad pr
* Compile Winutil
* Better JSON Parsing for Compile Script!! (#1850)
* Better JSON Parsing for Compile Script!!
Rendering Special XML Character should be possible when parsing json files that have some of these special characters, and without the need to worry about them. Try these changes to see what will be affected, and what won't be.
* Undo #1844 PR Changes
The problem that #1844 PR Tried to resolve temporarly, should now be fixed permanently with the previous changes to 'Compile.ps1' Script.
* Compile Winutil
* OO Shutup 10 Tweaks revamped (#1828)
* Add new OOSU10 configs
* Removed old OOSU config, added install and uninstall calls for the new conrfigs
* change filenames, centralize logic in Invoke-WPFOOSU
* Change Config Paths to the CTT main repo
* removed whitespace
* Add -Wait to avoid race condition when OOSU is run together with temp file cleanup
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Compile Winutil
* Add catch for restore point errors
* Compile Winutil
---------
Co-authored-by: Rux <jonathan.e.rux@ruxunderscore.com>
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Mr.k <mineshtine28546271@gmail.com>
Co-authored-by: ModernTTY <165050080+ModernTTY@users.noreply.github.com>
Co-authored-by: Straight <107145976+DaEpicR@users.noreply.github.com>
Co-authored-by: DaEpicR <DaEpicR@users.noreply.github.com>
Co-authored-by: Consejos Tecnológicos de Edu <139326298+lCTdE@users.noreply.github.com>
Co-authored-by: Martin Wiethan <47688561+Marterich@users.noreply.github.com>
2024-04-20 16:38:43 -05:00
Add-WindowsDriver -Path " $scratchDir " -Driver " $driverPath " -Recurse
Test 2023 12 19 (#1294)
* Compile Winutil
* Issue #1283, #1280 fixes, more (#1288)
* Explorer Fix
* Wifi, Explorer Crash, WinUtil Icon fixes. First attempt at white theme
* White theme
* Fix for clashing microwin directories if process fails, now new directory will be generated
* * Tested latest Windows 10 (22H2) images work fine
* Made dialog box more clear for issue #1283
* Added better logic for handling takeown /D flag for different locals issue #1280
* Refreshed the UI to more modern look
* Improved white theme
* Regrouped Tweak tab to make more sense
* Advanced tweaks were in a separate column but the button applied both Essential and advanced now they are in the same column and button applies both
* All instant action buttons were moved to Customize preferences column
* Explorer lockup Fix
* Wifi, Explorer Crash, WinUtil Icon fixes.
* Fix for clashing microwin directories if process fails, now new directory will be generated
* Merge all
* Theme improvement, adding icon to the shortcut
* Ability to download oscdimg from github, reorginizing Apps to fit better on more (smaller screens)
* Fixing release branch to WinUtil
* Adding double click to fullscreen
* Update Get-Oscdimg.ps1
---------
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Update winutil.ps1
* remove merc and thorium
* Ashlyn Programs
* Also inject drivers into boot.wim
* copy #1291
new branch
---------
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Cedric Lewe <0skillallluck@pm.me>
2023-12-19 13:55:55 -06:00
}
else
{
Write-Host " Path to drivers is invalid continuing without driver injection "
}
}
2023-11-28 16:11:11 -06:00
Write-Host " Loading registry... "
reg load HKLM \ zCOMPONENTS " $( $scratchDir ) \Windows\System32\config\COMPONENTS " > $null
reg load HKLM \ zDEFAULT " $( $scratchDir ) \Windows\System32\config\default " > $null
reg load HKLM \ zNTUSER " $( $scratchDir ) \Users\Default\ntuser.dat " > $null
reg load HKLM \ zSOFTWARE " $( $scratchDir ) \Windows\System32\config\SOFTWARE " > $null
reg load HKLM \ zSYSTEM " $( $scratchDir ) \Windows\System32\config\SYSTEM " > $null
Write-Host " Bypassing system requirements on the setup image "
reg add " HKLM\zDEFAULT\Control Panel\UnsupportedHardwareNotificationCache " / v " SV1 " / t REG_DWORD / d 0 / f
reg add " HKLM\zDEFAULT\Control Panel\UnsupportedHardwareNotificationCache " / v " SV2 " / t REG_DWORD / d 0 / f
reg add " HKLM\zNTUSER\Control Panel\UnsupportedHardwareNotificationCache " / v " SV1 " / t REG_DWORD / d 0 / f
reg add " HKLM\zNTUSER\Control Panel\UnsupportedHardwareNotificationCache " / v " SV2 " / t REG_DWORD / d 0 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassCPUCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassRAMCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassSecureBootCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassStorageCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\LabConfig " / v " BypassTPMCheck " / t REG_DWORD / d 1 / f
reg add " HKLM\zSYSTEM\Setup\MoSetup " / v " AllowUpgradesWithUnsupportedTPMOrCPU " / t REG_DWORD / d 1 / f
# Fix Computer Restarted Unexpectedly Error on New Bare Metal Install
reg add " HKLM\zSYSTEM\Setup\Status\ChildCompletion " / v " setup.exe " / t REG_DWORD / d 3 / f
} catch {
Write-Error " An unexpected error occurred: $_ "
} finally {
Write-Host " Unmounting Registry... "
reg unload HKLM \ zCOMPONENTS
reg unload HKLM \ zDEFAULT
reg unload HKLM \ zNTUSER
reg unload HKLM \ zSOFTWARE
reg unload HKLM \ zSYSTEM
Write-Host " Unmounting image... "
2024-03-28 14:39:23 -05:00
Dismount-WindowsImage -Path $scratchDir -Save
2023-11-28 16:11:11 -06:00
Write-Host " Creating ISO image "
Test 2023 12 19 (#1294)
* Compile Winutil
* Issue #1283, #1280 fixes, more (#1288)
* Explorer Fix
* Wifi, Explorer Crash, WinUtil Icon fixes. First attempt at white theme
* White theme
* Fix for clashing microwin directories if process fails, now new directory will be generated
* * Tested latest Windows 10 (22H2) images work fine
* Made dialog box more clear for issue #1283
* Added better logic for handling takeown /D flag for different locals issue #1280
* Refreshed the UI to more modern look
* Improved white theme
* Regrouped Tweak tab to make more sense
* Advanced tweaks were in a separate column but the button applied both Essential and advanced now they are in the same column and button applies both
* All instant action buttons were moved to Customize preferences column
* Explorer lockup Fix
* Wifi, Explorer Crash, WinUtil Icon fixes.
* Fix for clashing microwin directories if process fails, now new directory will be generated
* Merge all
* Theme improvement, adding icon to the shortcut
* Ability to download oscdimg from github, reorginizing Apps to fit better on more (smaller screens)
* Fixing release branch to WinUtil
* Adding double click to fullscreen
* Update Get-Oscdimg.ps1
---------
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Update winutil.ps1
* remove merc and thorium
* Ashlyn Programs
* Also inject drivers into boot.wim
* copy #1291
new branch
---------
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Cedric Lewe <0skillallluck@pm.me>
2023-12-19 13:55:55 -06:00
# if we downloaded oscdimg from github it will be in the temp directory so use it
# if it is not in temp it is part of ADK and is in global PATH so just set it to oscdimg.exe
$oscdimgPath = Join-Path $env:TEMP 'oscdimg.exe'
$oscdImgFound = Test-Path $oscdimgPath -PathType Leaf
if ( ! $oscdImgFound )
{
$oscdimgPath = " oscdimg.exe "
}
Write-Host " [INFO] Using oscdimg.exe from: $oscdimgPath "
2023-11-28 16:11:11 -06:00
#& oscdimg.exe -m -o -u2 -udfver102 -bootdata:2#p0,e,b$mountDir\boot\etfsboot.com#pEF,e,b$mountDir\efi\microsoft\boot\efisys.bin $mountDir $env:temp\microwin.iso
Test 2024 01 03 (#1384)
* Increase performance during loading. (#1348)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Custom save targets for MicroWin ISOs (#1346)
* Workaround for Explorer freezes
Some people have reported that setting the Event Log service to Automatic and starting it can (temporarily) fix Explorer freezes.
This change detects whether the next service in the list is "EventLog" and skips it
* Allow user to save MicroWin ISOs anywhere
Adds a SaveFileDialog component to let the user specify the location of the MicroWin ISO and uses it during creation with oscdimg.
(It uses a Process object from System.Diagnostics because I couldn't get it to work with Start-Process)
* Removed temporary workaround
Removed my version of the workaround in favor of the version from @KonTy (merge PR #1348 first)
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Highly anticipated fix for small screens (#1358)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
* Highly anticipated fix for small screen computers
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Winutil take a long time to create iso file and goes to sleep, this fixes that issue #1343 (#1371)
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Create .gitattributes
* Update .gitattributes
* add winget ventoy package (#1374)
* add winget ventoy package
* convert applications.json to utf-8
* update applications.json again
* Compile Winutil
* Update applications.json
fix encoding
* Compile Winutil
* Fix Encoding and Bad Symbols
* Compile Winutil
* feat: Add more software choices (#1379)
* Compile Winutil
* Update configs.Tests.ps1
* Update winutil.Tests.ps1
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* fix functions for unit tests
* Compile Winutil
* Update Invoke-MicroWin-Helper.ps1
* Compile Winutil
* fix name WPF Close Button
* Update inputXML.xaml
* Compile Winutil
* my bad that wasnt it
* modify unit test for stop on error
* Compile Winutil
* Update unittests.yaml
* Create test
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Compile Winutil
* Make restore points optional, enabled by default (#1380)
* Make restore points optional, enabled by default
* Tweaks order fix if restorepoint is checked
* Compile Winutil
* update unit tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update winutil.Tests.ps1
* tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* fix unit test
* Update winutil.Tests.ps1
* rewrite all pester test for winutil
* Compile Winutil
* fix handle is invalid error
* final unit test
---------
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Munkk <152475628+munkk01@users.noreply.github.com>
Co-authored-by: Kiril Vasilev <Kiril.v92@gmail.com>
2024-01-12 00:34:41 -06:00
#Start-Process -FilePath $oscdimgPath -ArgumentList "-m -o -u2 -udfver102 -bootdata:2#p0,e,b$mountDir\boot\etfsboot.com#pEF,e,b$mountDir\efi\microsoft\boot\efisys.bin $mountDir $env:temp\microwin.iso" -NoNewWindow -Wait
#Start-Process -FilePath $oscdimgPath -ArgumentList '-m -o -u2 -udfver102 -bootdata:2#p0,e,b$mountDir\boot\etfsboot.com#pEF,e,b$mountDir\efi\microsoft\boot\efisys.bin $mountDir `"$($SaveDialog.FileName)`"' -NoNewWindow -Wait
$oscdimgProc = New-Object System . Diagnostics . Process
$oscdimgProc . StartInfo . FileName = $oscdimgPath
$oscdimgProc . StartInfo . Arguments = " -m -o -u2 -udfver102 -bootdata:2#p0,e,b $mountDir \boot\etfsboot.com#pEF,e,b $mountDir \efi\microsoft\boot\efisys.bin $mountDir `" $( $SaveDialog . FileName ) `" "
$oscdimgProc . StartInfo . CreateNoWindow = $True
$oscdimgProc . StartInfo . WindowStyle = " Hidden "
$oscdimgProc . StartInfo . UseShellExecute = $False
$oscdimgProc . Start ( )
$oscdimgProc . WaitForExit ( )
2023-11-28 16:11:11 -06:00
if ( $copyToUSB )
{
Test 2024 01 03 (#1384)
* Increase performance during loading. (#1348)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Custom save targets for MicroWin ISOs (#1346)
* Workaround for Explorer freezes
Some people have reported that setting the Event Log service to Automatic and starting it can (temporarily) fix Explorer freezes.
This change detects whether the next service in the list is "EventLog" and skips it
* Allow user to save MicroWin ISOs anywhere
Adds a SaveFileDialog component to let the user specify the location of the MicroWin ISO and uses it during creation with oscdimg.
(It uses a Process object from System.Diagnostics because I couldn't get it to work with Start-Process)
* Removed temporary workaround
Removed my version of the workaround in favor of the version from @KonTy (merge PR #1348 first)
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Highly anticipated fix for small screens (#1358)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
* Highly anticipated fix for small screen computers
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Winutil take a long time to create iso file and goes to sleep, this fixes that issue #1343 (#1371)
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Create .gitattributes
* Update .gitattributes
* add winget ventoy package (#1374)
* add winget ventoy package
* convert applications.json to utf-8
* update applications.json again
* Compile Winutil
* Update applications.json
fix encoding
* Compile Winutil
* Fix Encoding and Bad Symbols
* Compile Winutil
* feat: Add more software choices (#1379)
* Compile Winutil
* Update configs.Tests.ps1
* Update winutil.Tests.ps1
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* fix functions for unit tests
* Compile Winutil
* Update Invoke-MicroWin-Helper.ps1
* Compile Winutil
* fix name WPF Close Button
* Update inputXML.xaml
* Compile Winutil
* my bad that wasnt it
* modify unit test for stop on error
* Compile Winutil
* Update unittests.yaml
* Create test
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Compile Winutil
* Make restore points optional, enabled by default (#1380)
* Make restore points optional, enabled by default
* Tweaks order fix if restorepoint is checked
* Compile Winutil
* update unit tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update winutil.Tests.ps1
* tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* fix unit test
* Update winutil.Tests.ps1
* rewrite all pester test for winutil
* Compile Winutil
* fix handle is invalid error
* final unit test
---------
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Munkk <152475628+munkk01@users.noreply.github.com>
Co-authored-by: Kiril Vasilev <Kiril.v92@gmail.com>
2024-01-12 00:34:41 -06:00
Write-Host " Copying target ISO to the USB drive "
#Copy-ToUSB("$env:temp\microwin.iso")
Copy-ToUSB ( " $( $SaveDialog . FileName ) " )
if ( $ ? ) { Write-Host " Done Copying target ISO to USB drive! " } else { Write-Host " ISO copy failed. " }
2023-11-28 16:11:11 -06:00
}
Write-Host " _____ "
Write-Host " (____ \ "
Write-Host " _ \ \ ___ ____ ____ "
Write-Host " | | | / _ \| _ \ / _ ) "
Write-Host " | |__/ / |_| | | | ( (/ / "
Write-Host " |_____/ \___/|_| |_|\____) "
# Check if the ISO was successfully created - CTT edit
if ( $LASTEXITCODE -eq 0 ) {
Test 2023 12 19 (#1294)
* Compile Winutil
* Issue #1283, #1280 fixes, more (#1288)
* Explorer Fix
* Wifi, Explorer Crash, WinUtil Icon fixes. First attempt at white theme
* White theme
* Fix for clashing microwin directories if process fails, now new directory will be generated
* * Tested latest Windows 10 (22H2) images work fine
* Made dialog box more clear for issue #1283
* Added better logic for handling takeown /D flag for different locals issue #1280
* Refreshed the UI to more modern look
* Improved white theme
* Regrouped Tweak tab to make more sense
* Advanced tweaks were in a separate column but the button applied both Essential and advanced now they are in the same column and button applies both
* All instant action buttons were moved to Customize preferences column
* Explorer lockup Fix
* Wifi, Explorer Crash, WinUtil Icon fixes.
* Fix for clashing microwin directories if process fails, now new directory will be generated
* Merge all
* Theme improvement, adding icon to the shortcut
* Ability to download oscdimg from github, reorginizing Apps to fit better on more (smaller screens)
* Fixing release branch to WinUtil
* Adding double click to fullscreen
* Update Get-Oscdimg.ps1
---------
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Update winutil.ps1
* remove merc and thorium
* Ashlyn Programs
* Also inject drivers into boot.wim
* copy #1291
new branch
---------
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Cedric Lewe <0skillallluck@pm.me>
2023-12-19 13:55:55 -06:00
Write-Host " `n `n Performing Cleanup... "
2023-11-28 16:11:11 -06:00
Remove-Item -Recurse -Force " $( $scratchDir ) "
Remove-Item -Recurse -Force " $( $mountDir ) "
Test 2024 01 03 (#1384)
* Increase performance during loading. (#1348)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Custom save targets for MicroWin ISOs (#1346)
* Workaround for Explorer freezes
Some people have reported that setting the Event Log service to Automatic and starting it can (temporarily) fix Explorer freezes.
This change detects whether the next service in the list is "EventLog" and skips it
* Allow user to save MicroWin ISOs anywhere
Adds a SaveFileDialog component to let the user specify the location of the MicroWin ISO and uses it during creation with oscdimg.
(It uses a Process object from System.Diagnostics because I couldn't get it to work with Start-Process)
* Removed temporary workaround
Removed my version of the workaround in favor of the version from @KonTy (merge PR #1348 first)
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Highly anticipated fix for small screens (#1358)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
* Highly anticipated fix for small screen computers
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Winutil take a long time to create iso file and goes to sleep, this fixes that issue #1343 (#1371)
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Create .gitattributes
* Update .gitattributes
* add winget ventoy package (#1374)
* add winget ventoy package
* convert applications.json to utf-8
* update applications.json again
* Compile Winutil
* Update applications.json
fix encoding
* Compile Winutil
* Fix Encoding and Bad Symbols
* Compile Winutil
* feat: Add more software choices (#1379)
* Compile Winutil
* Update configs.Tests.ps1
* Update winutil.Tests.ps1
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* fix functions for unit tests
* Compile Winutil
* Update Invoke-MicroWin-Helper.ps1
* Compile Winutil
* fix name WPF Close Button
* Update inputXML.xaml
* Compile Winutil
* my bad that wasnt it
* modify unit test for stop on error
* Compile Winutil
* Update unittests.yaml
* Create test
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Compile Winutil
* Make restore points optional, enabled by default (#1380)
* Make restore points optional, enabled by default
* Tweaks order fix if restorepoint is checked
* Compile Winutil
* update unit tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update winutil.Tests.ps1
* tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* fix unit test
* Update winutil.Tests.ps1
* rewrite all pester test for winutil
* Compile Winutil
* fix handle is invalid error
* final unit test
---------
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Munkk <152475628+munkk01@users.noreply.github.com>
Co-authored-by: Kiril Vasilev <Kiril.v92@gmail.com>
2024-01-12 00:34:41 -06:00
#$msg = "Done. ISO image is located here: $env:temp\microwin.iso"
$msg = " Done. ISO image is located here: $( $SaveDialog . FileName ) "
Test 2023 12 19 (#1294)
* Compile Winutil
* Issue #1283, #1280 fixes, more (#1288)
* Explorer Fix
* Wifi, Explorer Crash, WinUtil Icon fixes. First attempt at white theme
* White theme
* Fix for clashing microwin directories if process fails, now new directory will be generated
* * Tested latest Windows 10 (22H2) images work fine
* Made dialog box more clear for issue #1283
* Added better logic for handling takeown /D flag for different locals issue #1280
* Refreshed the UI to more modern look
* Improved white theme
* Regrouped Tweak tab to make more sense
* Advanced tweaks were in a separate column but the button applied both Essential and advanced now they are in the same column and button applies both
* All instant action buttons were moved to Customize preferences column
* Explorer lockup Fix
* Wifi, Explorer Crash, WinUtil Icon fixes.
* Fix for clashing microwin directories if process fails, now new directory will be generated
* Merge all
* Theme improvement, adding icon to the shortcut
* Ability to download oscdimg from github, reorginizing Apps to fit better on more (smaller screens)
* Fixing release branch to WinUtil
* Adding double click to fullscreen
* Update Get-Oscdimg.ps1
---------
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
* Update winutil.ps1
* remove merc and thorium
* Ashlyn Programs
* Also inject drivers into boot.wim
* copy #1291
new branch
---------
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: Cedric Lewe <0skillallluck@pm.me>
2023-12-19 13:55:55 -06:00
Write-Host $msg
[ System.Windows.MessageBox ] :: Show ( $msg , " Winutil " , [ System.Windows.MessageBoxButton ] :: OK , [ System.Windows.MessageBoxImage ] :: Information )
2023-11-28 16:11:11 -06:00
} else {
Write-Host " ISO creation failed. The " $ ( $mountDir ) " directory has not been removed. "
}
$sync . MicrowinOptionsPanel . Visibility = 'Collapsed'
Test 2024 01 03 (#1384)
* Increase performance during loading. (#1348)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Custom save targets for MicroWin ISOs (#1346)
* Workaround for Explorer freezes
Some people have reported that setting the Event Log service to Automatic and starting it can (temporarily) fix Explorer freezes.
This change detects whether the next service in the list is "EventLog" and skips it
* Allow user to save MicroWin ISOs anywhere
Adds a SaveFileDialog component to let the user specify the location of the MicroWin ISO and uses it during creation with oscdimg.
(It uses a Process object from System.Diagnostics because I couldn't get it to work with Start-Process)
* Removed temporary workaround
Removed my version of the workaround in favor of the version from @KonTy (merge PR #1348 first)
---------
Co-authored-by: Chris Titus <contact@christitus.com>
* Highly anticipated fix for small screens (#1358)
* Increase performance during loading.
Add a clear button to the search box.
Add link and description attributes to the applications JSON.
Use the link for linking to the app website.
Use the description as a tooltip for each app.
Add a clickable link to the website for each application (this took a long time; don't kick me if I got some wrong).
Pressing Escape now clears the filter box.
Pressing Alt-P prints your PID.
* Fix for services that are being stopped
* Compile winutil
* Adding new Get-LocalizedYesNo based on choice.exe which is faster and more reliable, thank you @dtm-r for implementing it and testing it on English, German, Dutch, French, Italian, Spansich and Russian. Incredible work by @dtm-r, all cridit and props go to him.
See this thread for details https://github.com/ChrisTitusTech/winutil/issues/1324
* Added error-checking logic for mounting ISOs and also created a wiki page that explains some of the errors.
* Highly anticipated fix for small screen computers
---------
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Winutil take a long time to create iso file and goes to sleep, this fixes that issue #1343 (#1371)
Co-authored-by: KonTy <KonTy@github.com>
* Compile Winutil
* Create .gitattributes
* Update .gitattributes
* add winget ventoy package (#1374)
* add winget ventoy package
* convert applications.json to utf-8
* update applications.json again
* Compile Winutil
* Update applications.json
fix encoding
* Compile Winutil
* Fix Encoding and Bad Symbols
* Compile Winutil
* feat: Add more software choices (#1379)
* Compile Winutil
* Update configs.Tests.ps1
* Update winutil.Tests.ps1
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* Update applications.json
* Compile Winutil
* fix functions for unit tests
* Compile Winutil
* Update Invoke-MicroWin-Helper.ps1
* Compile Winutil
* fix name WPF Close Button
* Update inputXML.xaml
* Compile Winutil
* my bad that wasnt it
* modify unit test for stop on error
* Compile Winutil
* Update unittests.yaml
* Create test
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* Compile Winutil
* Make restore points optional, enabled by default (#1380)
* Make restore points optional, enabled by default
* Tweaks order fix if restorepoint is checked
* Compile Winutil
* update unit tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update winutil.Tests.ps1
* tests
* Compile Winutil
* Update unittests.yaml
* Update unittests.yaml
* Update unittests.yaml
* fix unit test
* Update winutil.Tests.ps1
* rewrite all pester test for winutil
* Compile Winutil
* fix handle is invalid error
* final unit test
---------
Co-authored-by: KonTy <9524513+KonTy@users.noreply.github.com>
Co-authored-by: KonTy <KonTy@github.com>
Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
Co-authored-by: CodingWonders <101426328+CodingWonders@users.noreply.github.com>
Co-authored-by: Munkk <152475628+munkk01@users.noreply.github.com>
Co-authored-by: Kiril Vasilev <Kiril.v92@gmail.com>
2024-01-12 00:34:41 -06:00
#$sync.MicrowinFinalIsoLocation.Text = "$env:temp\microwin.iso"
$sync . MicrowinFinalIsoLocation . Text = " $( $SaveDialog . FileName ) "
# Allow the machine to sleep again (optional)
[ PowerManagement ] :: SetThreadExecutionState ( 0 )
2023-11-28 16:11:11 -06:00
$sync . ProcessRunning = $false
}
}