Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit d37d98e

Browse files
Update README.md
1 parent bc8ff39 commit d37d98e

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,46 @@ Note: I do not condone piracy, please use this only for backing up your own phys
66
# PowerShell
77
Documentation to be updated, powershell version [DVDFab.ps1](DVDFab.ps1) has been created, the VBScript is depreciated. The Script can be installed as a service by using the -Install Parameter when running the script. Please note when running as a service you will need to use the mobile DVDFab Remote app to monitor progress, this is due to the secure desktop no longer being supported on modern versions of windows, so you will not see the GUI.
88

9+
Installation
10+
Copy [DVDFab.ps1](DVDFab.ps1) to a location on your harddrive.
11+
12+
Edit the following lines for your enviroment:
13+
14+
15+
```
16+
#Set DVDFab Location
17+
$DVDFab= "C:\Program Files\DVDFab\DVDFab 12\DVDFab64.exe"
18+
```
19+
```
20+
#Set DVD Drive Letter
21+
$DVD= "`"D:\`""
22+
```
23+
Only the D needs to be changed if your Optical Drive is a different letter
24+
```
25+
#Get DVD Label Name for ISO File Name, Set Optical Drive Letter
26+
$DVDLabel= Get-Volume -DriveLetter D| % FileSystemLabel
27+
```
28+
Edit the Folder Path for your enviroment, leaving the $DVDLabel.iso
29+
```
30+
#Set Destination Folder
31+
$Dest="`"E:\Videos\Movies\$DVDLabel.iso`""
32+
```
33+
34+
Save your changes.
35+
36+
Run PowerShell as an Administrator CD to the directory you saved the script. Type ".\DVDFab.ps1 -Install" DVDFabAutoRip will now be installed as a system service.
37+
You may want to change the service logon account to a local administrator account rather than the System account if you run into any issues.
38+
39+
#Known Script Issues
40+
41+
LiveUpdate.exe - LiveUpdate is a program that DVDFab is uses to check for and prompt you to install updates to the program. Currently there is no way to turn off update checks in DVDFab. When DVDFab is lauched it will check this, and leave liveupdate.exe open with a window for you to install until you confirm to install or manually close. The /CLOSE paramater for DVDFab.exe commandline does not pass thru to this update utility. So if there is an update the process will not continue as the script will be waiting for this to close. The old VBScript got around this by waiting for the Optical drive to be in a ready state, however this had more problems as it was a guessing game with delays as the drive is not in use when DVDFab first runs and if it as to pull decryption information from DVDFab Servers. I'm currently working on a process to watch for and close this when detected.
42+
43+
Errors, Prompts etc. - This one is not possible to fix and is just the nature of how DVDFab works. If a disc is not reading well you may or may not get a warning in DVDFab remote. If something seems off, just stop the script or DVDFabAuto Rip service in Services.msc and run it manually.
44+
45+
46+
47+
#Sleep Issues
48+
Some UDH Friendly Drives may have sleep issues where the drive will no longer respond. This is a known issue for LG WH14NS40 Drives with UHD Friendly firmware for example, the fix is to use LG_WH16NS60_1.00 firmware for most LG WH14NS40 Drives. Flashing firmware may brick your drive, use at your own risk.
49+
950
# Depreciated VBScript
1051
[Click Here](/VBScript) if you are looking for the depreciated VBScript

0 commit comments

Comments
 (0)