Please see other gists for updated information. https://gist.github.com/XenoPanther/15d8fad49fbd51c6bd946f2974084ef8
- ゲストで
sdelete -z
→シャットダウンして→Optimize-VHD -Mode Prezeroed
- ホストで
Mount-VHD
→sdelete -z
→Dismount-VHD
→Optimize-VHD -Mode Prezeroed
これらは時間と書き込み量を浪費しているだけだから今すぐ止めて
Mount-VHD <VHD> [-NoDriveLetter] -ReadOnly -Passthru | Optimize-VHD [-Mode {Quick|Full}] -Passthru | Dismount-VHD
を使うべき。
読み取り専用でマウントしている時に Optimize-VHD をすればディスクイメージ内の NTFS から得られる空き領域情報を利用するから。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
#include <atlalloc.h> | |
#include <atlcore.h> | |
#include <clocale> | |
#include <cstdio> | |
int wmain(int, PWSTR argv[]) | |
{ | |
setlocale(LC_ALL, ""); | |
IFDYNAMICGETCACHEDFUNCTIONTYPEDEF(L"ntdll", BOOLEAN(WINAPI*)(), "RtlAreLongPathsEnabled", RtlAreLongPathsEnabled) |
- Pass-through USB device as USB device.
- Using USB storage as pass-through disk.
あなたが探している情報はこちらではないね?
Windows 10 の新機能の一つで FAT16/FAT32/exFAT で EFS(Encrypting File System) が使用可能になりました。 公式にはバージョン 1607 からとありますが実際には FAT16/FAT32 ではバージョン 1507 から exFAT ではバージョン 1511 から使用可能でした。 暗号化されたファイルは Windows 10 以外からはファイル名の末端に .PFILE が付きます。 Windows 10 の EFS 以外でファイル名の末端を .PFILE に変えても Windows 10 で EFS として扱われることはありません。
NTFS の EFS の場合と同じ方法で可能です。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
ファイル名、ディレクトリ名のUNICODE結合文字を、普通の1文字に変換する | |
.DESCRIPTION | |
ファイル名、ディレクトリ名のUNICODE結合文字になっている部分を、普通の1文字に変換する。 | |
例えば、「か + ゛(濁点記号)」を、「が」に変換する。 | |
Macは、ファイル名をUNICODE結合文字で保存するが、Windowsは、普通の1文字で保存するので、 | |
MacからWindowsに、USBメモリーでファイルをコピーした際など、MacとWindowsのファイル交換時に |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define WIN32_LEAN_AND_MEAN | |
#define _ATL_NO_AUTOMATIC_NAMESPACE | |
#include <windows.h> | |
#include <atlbase.h> | |
#include <wslapi.h> | |
int main() | |
{ | |
if (auto WslLaunchInteractivePtr = AtlGetProcAddressFn(LoadLibraryExW(L"wslapi", nullptr, LOAD_LIBRARY_SEARCH_SYSTEM32), WslLaunchInteractive)) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <fenv.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
extern "C" int64_t fto132proc(/* Passing by ST(0) */); | |
int main() | |
{ | |
double f = UINT32_MAX + 0.9; | |
uint32_t h, l; |
OlderNewer