Archive for the ‘Others’ category

Windows 10: Hide or Unhide Folders / Files Using Command Prompt

April 11th, 2019 by Admin

Is there a way to hide important files to prevent accidental deletion? In this tutorial we’ll show you how to hide or unhide folders / files in Windows 10 using Command Prompt.

Hide Folders or Files

When you’re going to hide a specific folder or file, open up the Command Prompt and type:
attrib +h "your_folder_or_file"

This command will assign the “Hidden” attribute to your target folder or file, and make it disappear from the File Explorer view.

If you need to hide all files and subfolders in your target location (for exmaple, D:\demo), run this following command:
attrib +h "d:\demo\*" /s /d

List Hidden Files

If you need to list hidden files and folders while in Command Prompt, use the CD command to change your working directory and then type:

dir /a:h

This will show all hidden folders or files in that location.

Unhide Folders or Files

When you need to unhide a specific folder or file, execute this command:
attrib -s -h "your_hidden_folder_or_file"

In order to unhide all hidden files and subfolders under a location (e.g. D:\demo), type this command:
attrib -s -h "d:\demo\*" /s /d

That’s it! The built-in option to hide folders/files is pretty easy but it’s not secure because anyone can unhide them the easy way. If you need to hide sensitive files from prying eyes, it’s a good idea to use third-party softwares (for instance, Protect My Folders) to hide and lock your folders/files with a password.

How to Fully Shutdown Windows 10 Instead of Hibernating It

April 10th, 2019 by Admin

By default, Windows 10 enables a feature called Fast Startup (Hybrid Shutdown) that can shut down and boot up your PC much faster than Windows 7 or previous versions of Windows. When you shutdown Windows 10, you’re actually performing a partial hibernation.

If you prefer to have your PC completely shut down, you can either turn off Fast Startup feature or use the following methods to fully shutdown Windows 10.

Method 1: Perform a Full Shutdown Using Shift Key

We’ve covered many different ways to shutdown Windows 10 in the past, but you might not realize that Windows 10 is just doing a hybird shutdown by default. If you would like to perform a full shutdown, simply hold down the SHIFT key on your keyboard and then click the “Shut down” option in the Start Menu, or on the sign-in screen.

Method 2: Perform a Full Shutdown Using Command Prompt

Just open an elevated Command Prompt or PowerShell window, type the following command and press Enter:

shutdown /s /f /t 0

This will immediately close any open applications without prompting to save your work, and completely shut down your PC.

Conclusion

The Fast Startup feature can make your computer boot up faster, saving valuable seconds every time you turn on Windows 10. However, if your Windows 10 was installed on a speedy solid-state drive (SSD), Fast Startup don’t actually make any difference and a full shutdown is recommended.

How to Change Other User Password on Mac OS X

March 26th, 2019 by Admin

How can I reset a forgotten Mac password with another admin account? If you have more than one user account on your Mac, try signing in with a different admin account and you can change other user password with ease.

Method 1: Change Other User Password on Mac from Users & Groups

  1. Click the ‘Apple’ logo in the menu bar, and then select System Preferences.

  2. When the System Preferences window opens, click on the Users & Groups icon.

  3. Click the lock icon in the bottom left corner to unlock the settings. Enter your current Mac account password and click Unlock.

  4. From the list of users on the left side, select the account you’ve forgotten the password for and then click on Reset Password button.

  5. Fill in the new password twice and set up a password hint, and then click on Change Password.

  6. Now you can log in to your locked Mac account with the new password.

Method 2: Change Other User Password on Mac Using Terminal

Using the terminal you can change other user password without old password on macOS High Sierra or earlier versions. However, since macOS 10.14 Mojave the terminal still requires you to provide the old password.

  1. Open up the Terminal window and type the following command:
    sudo passwd account_name

  2. Once pressing Enter, you’ll firstly be prompted to enter the password of the current admin account you’re logging into. After that, you need to enter the new password twice for your target account. If you’re running macOS Mojave, the old password is required before you can set a new password.

3 Ways to Open and Mount ISO File on Mac OS X

March 25th, 2019 by Admin

Looking for a way to open an .ISO file on your Mac? ISO files are often used to distribute bootable utilities for DOS, Windows, Linux or other operating systems. In this tutorial we’ll show you 3 easy ways to open and mount ISO file on macOS High Sierra.

Method 1: Open and Mount ISO file on Mac with DiskImageMounter

  1. To start, open a Finder window and navigate to the location of your ISO file, then right-click on it and select “Open With” -> “DiskImageMounter (default)“.

  2. A new drive will now appear on your desktop. You can double-click it to open the drive and view the contents of your ISO image.
  3. When you no longer need to access the mounted drive, just right-click on it and select Eject.

Method 2: Open and Mount ISO file on Mac Using Disk Utility

  1. Click the “Finder” icon in the dock. select Applications in the sidebar, then double-click the Utilities folder and then double-click Disk Utility.

  2. Once Disk Utility is open, click the File tab on the menu bar and then select Open Disk Image.

  3. Next, select any ISO image you want to mount, and click Open.

Method 3: Open and Mount ISO file on Mac Using Terminal

  1. Open up a Terminal window and you can mount an ISO image by executing the following command. Note down the name of the destination mount point (e.g. /Volumes/PCUnlocker) as we need to use it to unmount the disk.
    hdiutil mount ~/PathToYourISO/filename.iso

  2. When you no longer need to work with the ISO, here’s how to unmount it:
    hdiutil unmount /Volumes/mount-point

That’s it!

Create Windows 10 bootable USB from ISO on Mac without BootCamp

March 21st, 2019 by Admin

How can I make a bootable Windows installation USB on Mac OS X? After upgrading to macOS Mojave, you may find that Boot Camp Assistant is no longer supported and thus creating a bootable USB turns out to be a little bit challenging. In this tutorial we’ll show you how to create Windows 10 bootable USB from ISO on Mac, by using the Terminal or third-party software like UNetbottin.

Method 1: Create Windows 10 Bootable USB on Mac Using UNetbottin

UNetbootin is a free, open source utility that allows you to create bootable USB drives on Windows, Linux, and Mac OS X. If you’ve downloaded Windows 10 ISO image, here is how you can create a bootable Windows installer USB on Mac using UNetbootin.

  1. Plug a USB drive into your Mac and open Disk Utility. Select your USB drive from the left panel and click on Info button. Note down the device name since we will need that later.

  2. Next, download and launch the UNetbottin utility. Select the “Diskimage” radio button, click “” to select a bootable ISO image.

  3. After locating your Windows 10 ISO file, click on Open.

  4. Choose Type as USB Drive and select the device name of your USB drive (you probably would’ve noted it down earlier, so refer to that). Click OK to start installing to the USB drive.

  5. This process takes several minutes or longer, depending on the size of your selected ISO image.

Method 2: Create Windows 10 Bootable USB on Mac Using Terminal

Of course, if you prefer not to use third-party software, you can still use the excellent Terminal app, which is a little bit more involved, but no additional software needs to be installed. Follow these steps:

  1. After connecting a USB drive to your Mac, open a Terminal window and type diskutil list to display all the disks attached to your machine. You have to figure out the disk identifier of the USB drive you need to format. In my example, my USB drive is mounted as “disk2” and it’s about 32GB.

  2. Next, run the following command to format your USB drive and name it “WIN10“, where # is a placeholder for the disk identifier of your USB drive.
    diskutil eraseDisk MS-DOS "WIN10" GPT disk#

  3. Now, mount your Windows 10 ISO image with the command below, assuming it’s saved the Downloads folder. In my case, it is mounted as a volume named “ESD-ISO“.
    hdiutil mount ~/Downloads/your_windows_10_image.iso

  4. Finally, run the following command to copy all the files from the mounted ISO to your USB drive.
    cp -rp /Volumes/ESD-ISO/* /Volumes/WIN10/

    This command will take a while, and once it finishes, you can disconnect the mounted ISO with this command:
    hdiutil unmount /Volumes/ESD-ISO

  5. Now you should be able to boot from the USB to install Windows 10 on your Mac or Windows machine.

Conclusion

These should be the easiest ways to create a Windows 10 bootable USB from ISO on Mac, without using Boot Camp Assistant. No matter which method you prefer, be sure that you backup any important data on your USB drive, as the procedure of creating bootable USB will delete everything on it.

How to Securely Delete Files in Windows 10 without Third Party Software

March 18th, 2019 by Admin

When you delete a file, Windows only marks the file as deleted and it continues existing on your hard drive, even after you empty it from Recycle Bin. The deleted files can be recovered using data recovery software until they’re overwritten. In this tutorial we’ll show you how to use Microsoft’s command-line utility to securely delete, shred and wipe your files in Windows 10, so they can’t be recovered.

Part 1: Securely Delete Specific Folders or Files

To get started, download the SDelete utility from Microsoft’s website. After extracting the download file, copy the resulting .exe files to the System32 directory: C:\Windows\System32.

Open the elevated Command Prompt and you can securely and permanently delete any folder or file by running this command:
sdelete.exe -p 3 -s "your_folder_or_file"

By default, SDelete will overwrite the given file only once. You can use the –p option to specify the number of times to overwrite the data.

Part 2: Securely Wipe & Overwrite Free Space on Entire Drive

How can I overwrite the files that have been previously deleted without using the SDelete utility? To securely wipe all files and folders you have already deleted, simple run the following command to overwrite all free space on your drive. Replace D with the drive you want to clean up.
sdelete.exe -c:D

This command will only wipe the free space to prevent recovery of deleted files, and it won’t affect any files on your drive, so it’s safe. There is a similar built-in console tool called cipher.exe which also lets you wipe the free disk space, but it’s much slower than SDelete.
cipher /w:D

Conclusion

Using the SDelete utility you can securely delete files and wipe free space in Windows 10 to prevent any sensitive data from falling into the wrong hands. Despite SDelete does not have a graphical user interface, it is still easy for anyone to use.

3 Steps to Turn Windows 10 PC into a Wi-Fi Mobile Hotspot

March 13th, 2019 by Admin

Can I make my Windows 10 laptop a Wi-Fi hotspot? Need to share your PC’s internet connection with other device over Wi-Fi? In this tutorial we’ll walk you through the steps to turn Windows 10 computer into a Wi-Fi mobile hotspot without using third-party software.

Before getting started, make sure your PC has an internal or external wireless adapter. The Wi-Fi mobile hotspot will allow up to eight devices to get online simultaneously.

How to Turn Windows 10 PC into a Wi-Fi Mobile Hotspot

  1. Open the Settings app, and then go to Network & Internet.

  2. Click “Mobile hotspot” in the pane on the left. Toggle on “Share my Internet connection with other devices” to enable the mobile hotspot feature. The system will generate a random name and password for this hotspot, and you can change those by clicking the Edit button.

  3. Change the network name and password, select either 2.4-GHz or 5-GHz network band and click OK.

    Now your Windows 10 PC is acting as a Wi-Fi hotspot, and you can connect to it using your mobile phone or other computers.

That’s it!

What is difference between a BIOS password and a Windows password?

March 12th, 2019 by Admin

Can’t get past the password screen while the computer is booting? When you ran into this situation, it’s possible that you forgot the BIOS password or Windows password on your PC. In order to determine which type of password it is, you need to know the differences between a BIOS password and a Windows password.

BIOS Password:

BIOS (or UEFI) is non-volatile firmware used to perform hardware initialization before calling the boot loader to start the OS. BIOS has a setup utility which provides the ability to view and manage your computer’s hardware settings, such as changing the boot order or enabling CPU virtualization.

Through the BIOS Setup Utility, you can set up two different types of passwords:

  • Setup password: The computer will prompt for this password only when you are trying to access the BIOS Setup Utility. This password is also called “Admin password” or “Supervisor password” which is used to prevent others from changing your BIOS settings.
  • System Password: This will be prompted before the operating system can boot up. This password might also be called “User password” or “Power-on password” and it can stop someone powering up your computer.

If you forget any of these passwords, the reset process can be difficult or impossible. Depending on the motherboard of the computer in question, you can clear a lost BIOS password through jumper settings or removing the CMOS battery.

Windows Password:

Windows allows you to create separate accounts for different people to share a single PC. Each person can set a unique Windows password for their accounts to prevent unauthorized access.

If you forgot your Windows password and can’t log in to your PC, just boot your PC with PCUnlocker Live CD or USB and you can remove the password with ease.

Conclusion

BIOS password adds a hardware-level layer of security and locks the early stages of the startup process. After the BIOS passes the control to OS, you’ll see the Windows logo displayed on the screen. When your PC boots to the welcome/lock screen, you can click on the user name and sign in with a Windows password.