-
MSSQL - SSMS - Visual Studio - VS Code- Git - GitHub Desktop
-
PowerToys - GitButler - UniGetUI - windirstat - Partition Wizard
-
Tor - Firefox - Chrome - Brave - Opera - Arc - Zen - Ladybird - Servo
-
Download
Office Deployment Tool
extract to a folder by double clicking the exe. -
Remove all xml & create a
configuration.xml
file and paste the bellow:<Configuration> <Add OfficeClientEdition="64" Channel="PerpetualVL2024"> <Product ID="ProPlus2024Volume" PIDKEY="2TDPW-NDQ7G-FMG99-DXQ7M-TX3T2" > <Language ID="en-us" /> <ExcludeApp ID="Access" /> <ExcludeApp ID="Lync" /> <ExcludeApp ID="OneDrive" /> <ExcludeApp ID="OneNote" /> <ExcludeApp ID="Outlook" /> <ExcludeApp ID="Publisher" /> </Product> </Add> <RemoveMSI /> <Property Name="AUTOACTIVATE" Value="1" /> </Configuration>
-
Then run the terminal as admin and run the below command:
./setup /configure ./configuration.xml
-
LibreOffice - WPS - FreeOffice - OfficeSuite
-
WSL - Terminal - Powershell - Oh My Posh - Oh My ZSH
-
Starship - starship.toml ->
C:\Users\{Name}\.config
- For Powershell
- In the Document folder create a Folder name
PowerShell
. - Inside the folder Create a file name
Microsoft.PowerShell_profile.ps1
withps1
extension - And paste
Invoke-Expression (&starship init powershell)
in theMicrosoft.PowerShell_profile.ps1
- PowerShell log data
%APPDATA%\Microsoft\Windows\PowerShell\PSReadline\
- In the Document folder create a Folder name
- For Powershell
- Install vs code extension Outrun Meets Synthwave
- Install vs code extension Bearded Icons
- Install vs code extension Custom CSS and JS Loader
- Download Mononoki and Fira Code from Nerd Fonts (mononki it's the one I use super clean) but if you want ligatures arrows then use Fira Code)
- on vs code open up the user settings cmd + p then search for user settings and copy the settings on the settings.json file from this repo ( if you want it exactly like mines paste it at the bottom if you don't want to override your own settings then paste it at the top of file)
- Replace the
vscode_custom_css.imports
depending your operative system, and add your user or file location in your VS Codesettings.json
On Mac:
{
"vscode_custom_css.imports": [
"file:///Users/{your username}/.vscode/extensions/codevars.outrun-meets-synthwave-0.0.1/synthWaveStyles.css"
]
}
Windows:
{
"vscode_custom_css.imports": [
"file:///C:/Users/{your username}/.vscode/extensions/codevars.outrun-meets-synthwave-0.0.1/synthWaveStyles.css"
]
}
Linux:
{
"vscode_custom_css.imports": [
"file:///home/{your username}/.vscode/extensions/codevars.outrun-meets-synthwave-0.0.1/synthWaveStyles.css"
]
}
- Copy and paste the css inside of the
codingphase-style.css
file and replace the styles inside thesynthWaveStyles.css
file
- Create a snippet then goto snippet-generator and convert your snippet for VS Code.
- From Setting Icon select
User Snippets
and select whether you want it to be a global or language specific then give a trigger and save it.
-
Open up the Terminal (as Admin) and type in this command
-
Check If Recall Is ON :
Dism /Online /Get-Featureinfo /Featurename:Recall
-
Depending on your preference these commands can either ENABLE or DISABLE the software.
-
Disable RECALL:
Dism /Online /Disable-Feature /Featurename:Recall
-
Enable RECALL:
Dism /Online /Enable-Feature /Featurename:Recall
-
Manually
- Open Registry Editor
- Navigate to
HKEY_CURRENT_USER\Software\Classes\CLSID
- Right-click the folder and select
New > Key
- Assign the name
{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}
- Right-click the new key, and select
New > Key
- Name it
InprocServer32
- Edit the
default
string inside theInprocServer32
key, and set the data toempty/null
. - Reboot, and the context-menu should be available.
-
Auto
-
Create a file with {name}.reg any where then open it with notepad and paste teh bellow code inside it save it and then double click on the file and click yes on all the popup and after that reboot.
-
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}] [HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32] @="empty/null"
-
- Open Registry Editor (Search it in the windows search)
- In the Registry Editor put the bellow link in the nav it will take you to folder name AnyCode just delete the folder
- HKEY_CLASSES_ROOT\Directory\Background\shell\AnyCode
- HKEY_CLASSES_ROOT\Directory\shell\AnyCode
- HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU
-
For Adding
@echo off @REM Change the file location based on your app location SET stPath=C:\Program Files\Sublime Text\sublime_text.exe @REM Change the open with Sublime Text with the name you want to see for all 12 Places @REM for example @reg add "HKEY_CLASSES_ROOT\*\shell\Open with VS Code" /t REG_SZ /v "" /d "Open with VS Code" /f rem add it for right-clicking all file types @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "%stPath%,0" /f @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text\command" /t REG_SZ /v "" /d "%stPath% \"%%1\"" /f rem add it for right-clicking a folders @reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f @reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "%stPath%,0" /f @reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text\command" /t REG_SZ /v "" /d "%stPath% \"%%1\"" /f rem add it for right-clicking inside folders @reg add "HKEY_CLASSES_ROOT\Directory\Background\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f @reg add "HKEY_CLASSES_ROOT\Directory\Background\shell\Open with Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "%stPath%,0" /f @reg add "HKEY_CLASSES_ROOT\Directory\Background\shell\Open with Sublime Text\command" /t REG_SZ /v "" /d "%stPath% \"%%W\"" /f pause
-
For Deleting
@REM Change the open with Sublime Text as you added for your app for all 3 places @REM for example @reg delete "HKEY_CLASSES_ROOT\*\shell\Open with VS Code" @echo off rem for deleting right-clicking all file types @reg delete "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text" rem for deleting right-clicking a folders @reg delete "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text" rem for deleting right-clicking inside folders @reg delete "HKEY_CLASSES_ROOT\Directory\Background\shell\Open with Sublime Text pause
-
Or you get get the file from here open with notepad and modify them
- Create a rename.bat file in that folder
- Then open it with notepad and paste the bellow
ren *.jpg *.png
and save the file- Then double click
-
Create a rename.bat file in that folder
-
Then open it with notepad and paste the bellow code and save the file
-
Then double click
@echo off setlocal enabledelayedexpansion set "prefix=prefix_" for %%F in (*.*) do ( set "oldName=%%~nF" set "extension=%%~xF" set "newName=!prefix!!oldName!!extension!" ren "%%F" "!newName!" ) endlocal
- Right click and select rename then
alt + 0160
- Right click and select properties select customize then change icon and pick a blank icon
Create a new folder on your Windows Desktop (or in any other folder that you might want to have this God Mode icon) and change the name to:
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
cleanmgr
%temp%
temp
recent
prefetch
%AppData%
%LocalAppData%
shell:startup
shell:appsfolder
shell:common startup
SystemPropertiesAdvanced
to see windows users listchrome.exe --user-data-dir="c:/ChromeDevSession"