mr-beginner
mr-beginner
Mr.Beginner
12 posts
Personal collection of notes which I've studied from various sources online and offline. I'll create all my notes here which is all I know about Microsoft Windows Operating System.
Don't wanna be here? Send us removal request.
mr-beginner · 4 years ago
Photo
Tumblr media
The nation’s largest organic meal delivery service Trifecta Nutrition 
15 notes · View notes
mr-beginner · 4 years ago
Link
Need to find the IP address of a website? Here’s how to quickly do it using CMD in Windows 10.
2 notes · View notes
mr-beginner · 4 years ago
Link
Looking for a free and easy solution to backup your files by syncing files between two folders or multiple computers in Windows 10? Here’s how to quickly do it.
2 notes · View notes
mr-beginner · 4 years ago
Link
If you want to remove the Sync Center icon from the system tray on the taskbar, here’s how to disable Sync Center in Windows 10.
2 notes · View notes
mr-beginner · 4 years ago
Text
Tumblr media
NordVPN Premium Account
[email protected], paradise456
Expire Date: 2026-06-28
0 notes
mr-beginner · 7 years ago
Text
@echo off
::Menu Entry
:menu
echo "1. Action Center User Account Control"
echo "2. Disable Windows Firewall"
echo "3 Enable Windows Firewall"
echo "4. Disable SmartScreen Filter"
echo "5. Disable Windows Defender"
echo "6. Disable Unneccessary Services"
set /p %menu%==1 goto UAC
set /p %menu%==2 goto offFireWall
set /p %menu%==3 goto onFirewall
set /p %menu%==4 goto disableSmartscreen
set /p %menu%==5 goto disableDefender
set /p %menu%6==6 goto reboot
::Action Center, User Account Control:UAC
REG ADD Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0x5 /f
REG ADD Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorUser /t REG_DWORD /d 0x3 /f
REG ADD Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableInstallerDetection /t REG_DWORD /d 0x1 /f
REG ADD Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableSecureUIAPaths /t REG_DWORD /d 0x1 /f
REG ADD Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableUIADesktopToggle /t REG_DWORD /d 0x1 /f
REG ADD Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v PromptOnSecureDesktop /t REG_DWORD /d 0x0 /f
REG ADD Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ValidateAdminCodeSignatures /t REG_DWORD /0x0 /f
cls
echo "Command Successfully Executed"
cls
pause
goto menu
::Disable Firewall:offFireWall
netsh advfirewall set allprofiles state off
cls
echo "Command Successfully Executed"
cls
pause
goto menu
::Enable Firewall:onFirewall
netsh advfirewall setallprofiles state on
cls
echo "Command Successfully Executed"
cls
pause
goto menu
::Disable SmartScreen Filter:disableSmartscreen
REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v SmartScreenEnabled /t StringValue /d off /f
cls
echo "Command Successfully Executed"
cls
pause
goto menu
::Disable Windows 10 Defender:disableDefender
REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender /v DisableAntiSpyware /t REG_DWORD /d 0x1 /f
cls
echo "Command Successfully Executed"
cls
pause
goto menu
::Disable Unneccessary Services:disableServices
sc config AdobeARMservice start= disabled
sc config BITS start= disabled
sc config EFS start= disabled
sc config Fax start= disabled
sc config CscService start= disabled
sc config RemoteRegistry start= disabled
sc config SCardSvr start= disabled
sc config SCPolicySvc start= disabled
sc config WbioSrvc start= disabled
sc config WerSvc start= disabled
cls
echo "Command Successfully Executed"
cls
pause
goto menu
::Reboot to apply:reboot
shutdown /f /r /t 0
1 note · View note
mr-beginner · 7 years ago
Video
tumblr
USB Drive Write Protection
0 notes
mr-beginner · 7 years ago
Text
Credit To Respective Source Onwers
Mostly I’ve learned tips and tricks from https://www.askvg.com about windows registry editing. And also tips and tricks from https://www.computerhope.com about Commdline. And many other onine websites. I’ve been study and tested everything I’ve learned from these online websites. And re-share everything I know about tips and tricks here.
0 notes
mr-beginner · 7 years ago
Text
[Windows Tip] Replace “Ease of Access” Button with Other Programs on Login Screen
A few years back I posted a tutorial about changing action of "Ease of Access" aka "Accessibility" button at Login Screen. In that tutorial, I provided a simple trick to replace the "Ease of Access" button with any desired program such as Command Prompt, Calculator, any web browser or other desired programs. Using that trick you were able to launch your desired program at login screen by clicking on "Ease of Access" button without actually signing into Windows OS.
Launch Desired Program Using "Ease of Access" Button at Login Screen in Windows
But in that tutorial, you had to replace a system file "utilman.exe" in "System32" folder with the EXE file of your desired program. Today in this tutorial, I'm going to share another easy to follow and simple trick to replace "Ease of Access" button's action on Login Screen. With the help of this new trick, you'll be able to launch any desired program from Login Screen and you'll not need to replace any system file. We are going to use a simple Registry tweak in this tutorial shared by our reader "Vincent".
This trick will work in Windows Vista and all later Windows versions such as Windows 7/8/8.1 and Windows 10. If you also want to launch any desired program using "Ease of Access" button at Login Screen, following steps will help you:
1. Press WIN+R keys together to launch RUN dialog box. Now type regedit in RUN and press Enter. It'll open Registry Editor.
2. Now go to following key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options
3. Under Image File Execution Options key, create a new key and set its name as utilman.exe
4. Select utilman.exe key and in right-side pane, create a new String and set its name as Debugger
5. Now the final step! Double-click on Debugger string and set its value to the full path of your desired program's EXE file. If you want to launch Command Prompt, Calculator, Notepad, Paint or any other system program, you can use the direct EXE file name of those programs as the value of Debugger string such as cmd.exe or calc.exe or notepad.exe, etc.
But if you want to launch programs such as Internet Explorer or any other 3rd party software, then you'll need to provide full path of that program's exe file as value of Debugger string such as C:\Program Files\Internet Explorer\iexplore.exe for launching Internet Explorer.
That's it. Now lock your computer or log off from the current session and click on "Ease of Access" button at Login Screen. It'll immediately launch your desired program without any need to sign into Windows.
BONUS TIP:
If you set value of Debugger to C:\Windows\System32\SnippingTool.exe in registry, you'll be able to take screenshot of the Login Screen as it'll launch Snipping Tool which helps users in taking screenshots of selected area of the screen.
0 notes
mr-beginner · 7 years ago
Text
All Kinds of User Restriction from Registry
Disable Desktop Properties(Personalization)
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVerison\Policies\System Create New Key NoDispCPL Key Type: DWORD Value 1 To Disable Value 0 to Enable
Disable Taskbar Properties
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create New Key NoSetTaskbar Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Folder Options
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create New Key NoFolderOptions Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Task Manager
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System Create New Key DisableTaskMgr Key Type: DWORD Value 1 To Diable Value 0 To Enable
Disable Control Panel
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create New Key NoControlPanel Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable CommandPrompt
HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\System Create New Key DisableCMD Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Lock/Unlock Taskbar
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create New Key LockTaskbar Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Right-Click on Taskbar
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
Create New Key NoTrayContextMenu Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Toolbars in Taskbar
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create New Key NoToolbarsOnTaskbar Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Drag and Drop, Right Click in Start Menu
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create NoChangeStartMenu Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Run Option Start Menu
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create New Key NoRun Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Shut Down, Restart, Sleep and Hibernate
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
Create New Key NoClose Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Log Off Option in Start Menu
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create New Key StartMenuLogOff Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Active Desktop Feature
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create New Key NoActiveDesktop Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Adding or Removing Items From Toolbars
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Create New Key NoToolbarCustomize Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Adding or Removing Toolbars HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer Create New Key NoBandCustomize Key Type: DWORD Value 1 To Disable Value 0 To Enable
Disable Notification of Low Disk Space In Taskbar Notification Area(System Tray) HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer Create New Key NoLowDiskSpaceChecks Key Type: DWORD Value 1 To Disable Value 0 To Enable
Enable Write Protection To USB Drives HKEY_LOCAL_MACHINE\SYSTEM\Current Control Set\Control\StorageDevicePolicies Create New Key WriteProtect Value 1 To Enable Value 0 To Disable
Disable New Option in Right Click Menu(Context Menu) Go to Following Key: HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenu Handlers\New Key Type: StringValue Delete The Value of Default Key
Disable Send To Option in Right Click Menu Go to Following Key: HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenu Handlers\Send To Key Type: StringValue Delete The Value of Default Key
Disable access to any desired application program Go to following key: HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer\DisallowRun Create new String value with any name, like 1 and set its value to the desired program's EXE file. e.g., If you want to restrict msconfig, then create a String value 1 and set its value to msconfig.exe. If you want to restrict more programs, simply create more String values with names 2, 3 and so on and set their values to the program's exe file.
Disable Drives in My Computer Go to following key:
   HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer
In right-side pane, create new DWORD NoViewOnDrive and change its value as following:
   3 : To Restrict A and B drives only.    4 : To Restrict C drive only.    7 : To Restrict A, B, and C drives only.    8 : To Restrict D drive only.    F : To Restrict A, B, C, and D drives only.    03FFFFFF : To Restrict all drives.
If you want more specific restrictions, like you want to restrict a combination of drives, you can use decimal no. instead of hexadecimal no. Following is a list for all drives decimal no.:
   A: 1    B: 2    C: 4    D: 8    E: 16    F: 32    G: 64    H: 128    I: 256    J: 512    K: 1024    L: 2048    M: 4096    N: 8192    O: 16384    P: 32768    Q: 65536    R: 131072    S: 262144    T: 524288    U: 1048576    V: 2097152    W: 4194304    X: 8388608    Y: 16777216    Z: 33554432    ALL: 67108863
So if you want to disable a combination of drives, just sum their numbers and give the same value to NoViewOnDrive. e.g., for restricting C, D, E and F drives, give the value: 4+8+16+32 = 60
PS: You can also hide the drives using NoDrives DWORD value. The location and its value remain same as the above trick.
Difference between NoViewOnDrive and NoDrives is that NoViewOnDrive protects the drive so that no user can access that drive. On the other hand, NoDrives only hides the drive from My Computer window but users can still access that drive using RUN dialog box, address bar, etc.
0 notes
mr-beginner · 7 years ago
Text
Do backup carefully before testing something on your System 😂😂😂
0 notes
mr-beginner · 7 years ago
Text
Microsoft Windows Keyboard Shortcuts
Tumblr media
Shortcuts:
1. Windows Key + R
2. Windows Key + E
3. Windows Key + D
4. Ctrl + C
5. Ctrl + V
6. Ctrl + X
7. Ctrl + N
8. Ctrl + O
9. Ctrl + P
10. Ctrl + S
11. Alt + F4
12. Alt + Space
13. Windows Key + L
14. Windows Key + I
15. Windows Key + Tab
Run Commands, use with Run Dialog Box
1. control
2. diskmgmt.msc
3. cmd
4. devmgmt.msc
5. regedit
6. eventvwr.Mac
7. powershell
8. calc
9. mspaint
10. firewall.cpl
11. gpedit.msc
12. lusrmgr.msc
13. logoff
14. shutdown -f -s -t 0
15. shutdown -f -r -t 0
16. sysdm.cpl
17. winword
18. excel
19. powerpnt
20. msaccess
21. snippingtool
22. appwiz.cpl
0 notes