System
> Rename PC
> Set name like lenovo-win11
Uninstall unused applications like: Weather, Xbox, Mcafee, Cortana (maybe OneDrive too)
View
> Show
> Hidden Items
On left side tab, right click OneDrive. Go to Settings. Select Unlink PC
If you had accidentally saved files there, login to OneDrive from Firefox. Download your files. Delete all files from there. And delete from it’s Bin too
As per this video:
Computer\HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows
Key
called Explorer
DWORD (32-bit)
. Name it DisableSearchBoxSuggestions
DWORD
and set it to 1
winget
winget
usage: search
, show
, install
, list
, update
Browse winget packages at: winget.run, winstall.app
My Programs are: Firefox, VS Code, Git, VLC, fastfetch, Notepad++
Installation commands (run Terminal as Admin):
winget install -e --id Mozilla.Firefox
winget install -e --id Microsoft.VisualStudioCode
winget install --id Git.Git -e --source winget
winget install fastfetch
winget install -e --id VideoLAN.VLC
winget install -e --id Notepad++.Notepad++
Updating packages: winget upgrade --all
If Git Bash profile not added within the terminal, refer this article
~
is /c/Users/kumar
which in Windows Powershell/CMD would translate to C:\Users\kumar
/etc/bash.bashrc
You can create an extra one in home folder as: touch ~/.bash_profile
. Refer this answer. Paste below lines into that file, save it. Then restart terminal:
alias cls=clear
alias gedit=notepad
alias refreshenv="exec $(which $SHELL)"