Ještě při použití příkazového řádku jako správce, rozdílnost chování se stejným kódem:
C:\Windows\system32>c:\Users\-\Desktop\asociuj.bat
C:\Windows\system32>ftype txtfile="c:\Windows\notepad.exe" "%1"
txtfile="c:\Windows\notepad.exe" "%1"
C:\Windows\system32>assoc .txt=txtfile
.txt=txtfile
C:\Windows\system32>ftype txtfile="c:\Windows\notepad.exe" "%%1"
txtfile="c:\Windows\notepad.exe" "%%1"
C:\Windows\system32>assoc .txt=txtfile
.txt=txtfile
C:\Windows\system32>