-
Enable ClearType
-
Configure Microsoft Edge as the default browser
-
Update VSCode configuration
{ "editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace", "update.enableWindowsBackgroundUpdates": false, "update.mode": "manual", "terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\7\\pwsh.exe", "workbench.startupEditor": "none", "terminal.integrated.rendererType": "dom", "csharp.suppressDotnetInstallWarning": true, "csharp.suppressDotnetRestoreNotification": true, "csharp.supressBuildAssetsNotification": true, "azureFunctions.showProjectWarning": false }
-
Update Windows Terminal configuration
{ "$schema": "https://aka.ms/terminal-profiles-schema", "defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", "profiles": [ { "guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", "useAcrylic": true, "acrylicOpacity": 0.85, "colorScheme": "Campbell", "fontFace": "Cascadia Code", "hidden": false, "name": "PowerShell", "source": "Windows.Terminal.PowershellCore" }, { "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", "hidden": false, "name": "Azure Cloud Shell", "source": "Windows.Terminal.Azure" } ], "schemes": [], "keybindings": [] }
-
Configure Start Menu & Taskbar to only include the following icons:
- File Explorer
- Edge
- Windows Terminal
- Visual Studio Code
- Azure Storage Explorer
-
Disable PowerShell 7 update notifications
-
Create an environment variable named
POWERSHELL_UPDATECHECK
-
Set the value of the environment variable to
Off
(case-sensitive)
-
-
Run Azure Functions Core Tools atleast once to configure Windows Firewall
func init test --worker-runtime dotnet cd test func new --template 'HTTP trigger' --name web func start --build