Showing posts with label drive. Show all posts
Showing posts with label drive. Show all posts

24 March 2021

'Turn BitLocker on' missing on usb drive

 'Turn BitLocker on' missing on usb drive

'Turn BitLocker on' appears on all HD partitions, but not on USB drives. 

Solution: Insert the USB stick in question - In Disk Manager right click on the partition and Delete Volume then New Simple Volume. 

After formatting in Disk Management, you need to physically disconnect and reconnect the removable drive. Then the "Turn on Bitlocker" button appears in the Explorer context menu.

10 July 2018

Copy UNC network path (not drive letter) for paths on mapped drives from Windows Explorer

Copy UNC network path (not drive letter) for paths on mapped drives from Windows Explorer



  1. In Windows Explorer, hold the shift button down, r-click on the file, and select "Copy as path".
  2. Insert a Hyperlink in the email and paste in the address field of the Hyperlink dialogue box. (Shortcut: ctrl-K ctrl-V + OK). At this point, the link will display the mapped drive letter as the root (Q:\foo.doc).
  3. Now, r-click and select "Edit Hyperlink..." you will notice that the Address field has been translated back into the full UNC path (\\cartman\users\emueller\foo.doc). With your mouse in the Address field, hit ctrl-A and ctrl-C to copy the full path to your clipboard, then move your cursor to the top field ("Text to Display:") hit ctrl-A and ctrl-V to display it correctly in your email.

16 January 2017

USB Device - Advanced Repair

USB Device - Advanced Repair

Problems:

Your computer can not find your Flash drive or SD card? or any other problem of your USB devices?

Solution:

U盘为什么要量产?


Step 1: Download ChipGenius, software for assisting users in extracting information about their USB devices, finding out details they need to repair broken flash drives.

Step 2: Run ChipGenius, and find the model number (e.g. PS 2251-07) of the control chip of a USB device (e.g. flash drive).

Step 3: Go to U盘量产网 and find the specific mass production tool for that specific control chip model (e.g. 'PS 2251-07'). Download the tool (e.g. the one on the page - 群联MPALL 7F V5.03.0A量产工具DL07中文版 )

Step 4: Find the tutorial for using the tool (e.g. 金士顿U盘PS2251-07东芝闪存白片量产CDROM成功教程 )

Step 5: Run the tool. Follow the tutorial. The bad flash drive or SD card will be repaired.

(Done)

19 August 2015

Having an ISO file, how do you create a virtual CD drive?


https://www.howtogeek.com/howto/windows-vista/mount-an-iso-image-in-windows-vista/
How to Mount an ISO image in Windows 7, 8, and 10

Windows 8/10 - right-click the iso file, select 'mount'.

Windows 7 or before, download and install 'WinCDEmu'.
You can double click the iso file to mount it. Or you can right-click the iso file, and select 'select drive letter and mount'.


============================

Virtually mount and access ISO files as a virtual device.
If you don’t have a CD/DVD burner installed on your machine or you don’t have media available to you (a blank CD-R/DVD-R), you can “mount” the ISO file as a virtual drive. With this method, your machine will believe that the file is a real disk drive, and you will be able to read files from this “virtual disk.” This approach is advisable only for installation of applications (such as Office) or minor system upgrades. You will not be able to install an Operating System using this approach, because the virtual drive would disappear at some point during the installation.
There are several software options for the virtual drive approach. Though they have not been tested and are not supported by the VLSC team, customers report that Daemon Tools and Pismo File Mount offer such capability as well as Microsoft Virtual CD Control Tool.

Sherman: Daemon Tools works well.

02 February 2015

Automatically Map Network Drives on Domain Login for All Users, Certain Users, or Certain Groups

Automatically Map Network Drives on Domain Login for All Users, Certain Users, or Certain Groups

https://tinyapps.org/docs/auto_map_network_drives.html

tinyapps.org / docs / Automatically Map Network Drives on Domain Login for All Users, Certain Users, or Certain Groups


As always, use the following instructions at your own risk (and joy). Please submit any corrections or comments if you feel so moved.
Auto map network drives on login for all users
  1. Save the following batch file to the domain controller's NETLOGON share as logon.bat:
    @echo off
    net use * /delete /yes
    net use x: \\server_name\shared_directory_name
  2. Active Directory Users and Computers
  3. Right click domain name at top left and click Properties > Group Policy > Edit > User Configuration > Windows Settings > Scripts (Logon/Logoff) > Logon > Add...
  4. Enter path to logon.bat (e.g., \\ACME.local\sysvol\ACME.local\scripts\logon.bat) and click OK three times
  5. Login from workstation. Drive x: should appear in My Computer.
Auto map network drives on login for certain users:
  1. Save the following batch file to the domain controller's NETLOGON share as logon.bat:
    @echo off
    net use * /delete /yes
    net use x: \\file_server_name\shared_directory_name
  2. Active Directory Users and Computers > Users > Double click user > Profile
  3. Enter "logon.bat" (no quotes) in the "Logon script" box and click OK
  4. Login from workstation as user modified in step 2. Drive x: should appear in My Computer.
Auto map network drives on login based on Group membership
  1. Get KiXtart
  2. Put WKIX32.EXE in both the domain controller's NETLOGON share and %SystemRoot% (normally C:\WINNT\).
  3. Save the following script as map_drive.kx to the NETLOGON share (be sure to change the group as needed - here we've used Domain Users):
    use "*" /DELETE
    if ingroup("Domain Users")
    use x: "\\server_name\share_name"
    endif
  4. Save the following batch file (which calls your KiXtart script) as login.bat to the domain controller's NETLOGON share:
    @echo off
    \\server_name\NETLOGON\WKIX32.EXE \\server_name\NETLOGON\map_drive.kx
  5. Active Directory Users and Computers
  6. Right click domain name at top left and click Properties > Group Policy > Edit > User Configuration > Windows Settings > Scripts (Logon/Logoff) > Logon > Add...
  7. Enter path to login.bat (e.g., \\ACME.local\sysvol\ACME.local\scripts\login.bat) and click OK three times
  8. Login from workstation as a user belonging to group designated in map_drive.kx. Drive x: should appear in My Computer.
  9. If x: does not appear, check the permissions of NETLOGON, WKIX32.EXE, your script files, etc. Also, make sure that the user or group has the necessary permissions on the shared folder you are mapping.
More KiXtart Examples
  1. Map drive if user is *not* a member of a certain group (in this case, "Students"):
    If InGroup("Students") = 0
       Use R: "\\server\records"
    EndIf
    
  2. Using Boolean operators:
    If InGroup("Teachers") Or InGroup("Office") Or InGroup("PTA")
       Use G: "\\server\Grownup_Files"
    EndIf
    
    If InGroup("2008 Class") And InGroup("Honors")
       Use S: "\\server\smart_kids"
    EndIf
    
  3. Using Select...EndSelect (stops processing on the first true Case)
    Select
       Case InGroup("Students")
          Use S: "\\server\student_storage"
       Case InGroup("Office")
          Use O: "\\server\office_docs"
          Use R: "\\server\records"
       Case InGroup("Teachers")
          Use O: "\\server\office_docs"
          Use S: "\\server\student_storage"
          Use T: "\\server\teaching_materials"
    EndSelect
    

last update: 2008.02.12