Posts

How to Create 500MB Windows Recovery Partition on Windows 10 and Windows 11

Image
  I've already deleted the Recovery Partition for Demonstration Process. Here are the steps to Recreate the Formatted/Deleted Windows Recovery Partition 1.) Create a New Simple Volume on the Unallocated space 2.) Copy files from Windows Partition using the following commands in the Administrator Command prompt . Just in case if you don't know how to lauch an Administrator Command Prompt, Search cmd using Windows Start Menu Search Bar, Select Command Prompt from the list and press Ctrl+Shift+Enter. Click Yes and enter your Administrator Password if you have one! Execute these commands in the command prompt according to your Recovery Partition drive letter  FOR UEFI & BIOS Firmwares: mkdir E:\Recovery\WindowsRE xcopy /h C:\Windows\System32\Recovery\Winre.wim E:\Recovery\WindowsRE Note: If the WindowsRE folder is empty on the System32 folder and if you don't have the WinRE.wim file, you need to extract it from the Windows 10 or Windows 11 iso according to your Installed ...

Hyundai Protocol X8 Drivers

Image
Hyundai Protocol X8 Windows Tablet Drivers Download

How to use VLC Media Player as a Screen Recorder

Image

How to make Bootable Mac Installer in Windows

Image

Super Mario Cross Over v3.1.21 [SMBC]

Image
Download Super Mario Cross Over v3.1.21 Open with IE Play the original Super Mario Bros. as classic video game characters.  Download Super Mario Cross Over v3.1.21

ProShow Producer Stylepacks for ProShow Gold

Image
Photodex ProShow Producer Stylepacks for ProShow Gold - Hack   Share your most precious memories with the award-winning ProShow Gold slideshow software. Easily combine your photos, video clips and music to create personalized slide shows to share with friends and family in your living room or across the world. Drag and drop your photos, videos and music into ProShow Gold's easy-to-use interface. There you can add borders to photos, crop and edit video and audio clips, use built-in editing tools like red-eye removal and more. Create spectacular effects by adding a pan, zoom or rotate to any photo in your show. Choose from over 280 transition styles including dissolves, fades, wipes, and shapes. Add custom captions and backgrounds to any photo. ProShow Gold will output your slide show to over 40 formats including DVD, Blu-ray, CD, the Web and dozens of devices like the iPod®, iPhone. However if you wanna install those ProShow Producer's Additiona...

How to start a service using cmd

Image
How to start a service using cmd    To Start a service using Command Prompt ( CMD )  Launch command prompt from start menu or type CMD in Run and then press enter Now start your desired service using the Syntax: NET START ServiceName Example: Starting windows installer service using NET command Type NET START MSISERVER To stop the desired service from command prompt: Type NET STOP SERVICENAME   SC: Service Control The SC command can be used in a similar way to Start, Query, Stop a Service in Windows Example: Starting windows installer service using SC command Type SC START MSISERVER     To stop the desired service Type  SC STOP SERVICENAME and press Enter As you see i'm checking the service using SC QUERY MSISERVER to check the status of the Service   You can checkout other switches and what  they do by typing SC /?