Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

502 total results found

Create .M3U Playlist From .CHD Files (Windows)

Emulation Management - One Liners

m3umaker.ps1 # Get the current directory $folderPath = Get-Location # Remove existing .m3u files in the current directory Get-ChildItem -Path $folderPath -Filter *.m3u | Remove-Item -Force # Get all .chd files in the current directory $chdFiles = Get...

Create .CHD From .ISO Files

Emulation Management - One Liners

Windows ISO2CHD.bat for /r %%i in (*.iso) do chdman createcd -i "%%i" -o "%%~ni.chd" >> log Linux convertFromIsoToChd.sh #!/bin/bash # Grab .iso file for f in ./*.iso do name=${f%.iso} # Remove '.iso' from file name chdman createcd -i "$name....

Create .CHD From .CUE Files

Emulation Management - One Liners

Windows cue2chd.bat for /r %%i in (*.cue) do chdman createcd -i "%%i" -o "%%~ni.chd" >> log Linux convertFromCueToChd.sh parallel chdman createcd -i {} -o {.}.chd ::: *.cue   The below script and the attached version above does not work. Need to tes...

Create .ISO From .CHD Files

Emulation Management - One Liners

Windows CHD2ISO.bat for %%i in (*.chd) do ( chdman extractcd -i "%%i" -o "%%~ni.cue" -ob "%%~ni.iso" del "%%~ni.cue" ) >> log   Linux convertFromChdToIso.sh #!/bin/bash # Grab .chd file for f in ./**/*.chd do name=${f%.chd} # Remove '.chd' fr...

Create .CUE From .CHD Files

Emulation Management - One Liners

Windows chd2cue.bat for /r %%i in (*.chd) do chdman extractcd -i "%%i" -o "%%~ni.cue" >> log   Linux convertFromChdToCue.sh #!/bin/bash # Grab .chd file for f in ./**/*.chd do name=${f%.chd} # Remove '.chd' from file name chdman extractcd -i "...

Create .GDI From .CHD Files

Emulation Management - One Liners

    Windows     Linux convertFromChdToGdi.sh #!/bin/bash # Grab .chd file for f in ./**/*.chd do name=${f%.chd} # Remove '.chd' from file name chdman extractcd -i "$name.chd" -o "$name.gdi" --force done

Create .CHD From .GDI Files

Emulation Management - One Liners

      Windows     Linux convertFromGdiToChd.sh #!/bin/bash # Grab .gdi file for f in ./**/*.gdi do name=${f%.gdi} # Remove '.gdi' from file name chdman createcd -i "$name.gdi" -o "$name.chd" --force done  

CHDMan Windows Instructions

Emulation Management - One Liners

Introduction The file formats to adopt for CDs and other optical supports. We have talked about a format, derived from researches we had on MAME, in order to be able to represent these supports in a compressed way, without losing the integrity of the data ...

CHDMan Linux Instructions

Emulation Management - One Liners

Introduction The file formats to adopt for CDs and other optical supports. We have talked about a format, derived from researches we had on MAME, in order to be able to represent these supports in a compressed way, without losing the integrity of the data ...

Current Resume (updated 2-26-24)

Ryan's Career - Personal Information

Ryan Mutschler Functional Resume Ryan Mutschler Detroit, MI | mutschlerhome.com | employmentinquiries@ryan.mutschlerhome.com | linkedin.com/in/ryanmutschler CAREER SUMMARY A self-motivated IT professional with 20+ years of hands-on experience desig...

Extend the Windows RE Partition

Windows - Scripts System

  Resize_script.ps1   The sample script below can be used to increase the size of recovery partition to successfully update Windows Recovery Environment (WinRE). It is recommended to have 250MB of free space in the recovery partition for WinRE updates to in...

About Me

Ryan's Career - Personal Information

Work In Progress

Plaza Japan

Personal Holiday Wishlists - Ryan Store Wishlists

Plaza Japan - Dragon Quest Square Enix Dragon Quest X Online - Wireless Charging Pad ''Zing'' w/Light-up Slime Figure Square Enix Squishy Color Lamp Slime (Dragon Quest) Square Enix Dragon Quest Smile Slime Plush: Metal Slime (L Size) Square Enix Dragon Qu...

Unable to install NuGet provider for PowerShell

Windows - Walkthroughs Powershell

Before installing EXO V2 module, we need to install the PowerShellGet module. The problem is that we are unable to install NuGet provider and a couple of errors are showing. Warning unable to download from URI, unable to download the list of available provider...

Disable IPv6

Linux - Walkthroughs Debian Distros

1. Edit the Grub config. sudo nano /etc/default/grub 2. Append/edit the following line. GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 quiet" GRUB_CMDLINE_LINUX="ipv6.disable=1" 3. Update Grub. sudo update-grub 4. Reboot for the changes to take effect im...

"Metal" T-Shirts

Personal Holiday Wishlists - Ryan Store Wishlists

All shirts from DraculaByte.com Click on the pictures to go to the store page. ...

Force Active Directory replication on a domain controller

Active Directory - One Liners

To force Active Directory replication run the command ‘repadmin /syncall /AeD’ on the domain controller.  Run this command on the domain controller in which you wish to update the Active Directory database.  For example, if DC2 is out of Sync, run the command ...

Plex Server Improvements (9-26-24)

Plex - Walkthroughs Configuration

Convert to using RAM for transcoding. Configured Settings for RAM Transcoding Created new "Path" variable named RAM Transcode Path: /RAM Container path is /RAM Host path is /dev/shm Access Mode is Read/Write Modified Plex in Settings > Transc...