✔ 3D Viewer
✔ Calculator
✔ Calendar
| <?xml version="1.0" encoding="utf-8"?> | |
| <unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
| <settings pass="oobeSystem"> | |
| <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <Reseal> | |
| <Mode>Audit</Mode> | |
| </Reseal> | |
| </component> | |
| <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <InputLocale>0414:00000414</InputLocale> |
| <?xml version="1.0" encoding="utf-8"?> | |
| <unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
| <settings pass="oobeSystem"> | |
| <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <InputLocale>0414:00000414</InputLocale> | |
| <SystemLocale>nb-NO</SystemLocale> | |
| <UILanguage>en-US</UILanguage> | |
| <UILanguageFallback>en-US</UILanguageFallback> | |
| <UserLocale>nb-NO</UserLocale> | |
| </component> |
For all MKV files in a folder:
SubtitleEdit /convert *.mkv SubRip
For all files in a folder:
SubtitleEdit /convert *.* SubRip
| @echo off | |
| cd /d %1 | |
| echo cd /d %1 | |
| echo Trying to extract subtitles... | |
| for %%a in ("*.*") do SubtitleEdit /convert "%%a" SubRip | |
| for %%a in ("*.*") do ffmpeg -i "%%a" -sn -vcodec copy -acodec copy [subtitleless]-%%a |
.afphoto, .arw, .bmp, .bpg, .cd5, .cpt, .cr2, .crw, .deep, .dib, .dng, .drw, .ecw, .eps, .erf, .exif, .fits, .flif, .gif, .ico, .ilbm, .img, .jfif, .jpe, .jpeg, .jpg, .jxr, .kdc, .kra, .layered, .mdp, .mrw, .nef, .nrrd, .nrw, .orf, .pam, .pcx, .pdn, .pef, .pgf, .plbm, .png, .psd, .psp, .raf, .raw, .rw2, .rwl, .sai, .sgi, .sid, .sr2, .srw, .sun, .svg, .tga, .tif, .tiff, .vicar, .wdp, .webp, .xcf, .xisf
Get the recovery key for a drive:
manage-bde -protectors -get X:
Lock
manage-bde -lock X:
| foreach($file in (dir -r -i *.bat -force)) { $cleaned = gc $file | where { $_ -notlike "*lorem ipsum*" }; sc $file $cleaned } |
| [AutoCrop] | |
| Tolerance=0 | |
| [Browser] | |
| ActionConvert=0 | |
| ActionSlide=0 | |
| ArrangeBy=7 | |
| AutoCollapse=0 | |
| AutoPlay=1 | |
| BColorFilter01=jpeg, 237 237 202 |
youtube-dl --ignore-config -f [bestaudio/asr=44100] --extract-audio --audio-format mp3 --audio-quality 320k --embed-thumbnail --add-metadata --metadata-from-title "%(artist)s - %(title)s" --output "%userprofile%/desktop/%(title)s.%(ext)s"