- Aug
- 2,134
- 92
Here are a few aliases that I use to work with the Zone.Identifier file contained in files that I download from the Internet.
Joe
Code:
e:\downloads>alias zone
if exist %1:zone.identifier type %1:zone.identifier
e:\downloads>zone VbsEditSetup.exe
[ZoneTransfer]
ZoneId=3
ReferrerUrl=https://www.vbsedit.com/
HostUrl=https://www.vbsedit.com/download93235/VbsEditSetup.exe
Code:
e:\downloads>alias ReferrerUrl
if exist %1:zone.identifier type %1:zone.identifier | ffind /kmt"ReferrerUrl"
e:\downloads>ReferrerUrl VbsEditSetup.exe
ReferrerUrl=https://www.vbsedit.com/
Code:
e:\downloads>alias hosturl
if exist %1:zone.identifier type %1:zone.identifier | ffind /kmt"HostUrl
[e:\downloads>hosturl VbsEditSetup.exe
HostUrl=https://www.vbsedit.com/download93235/VbsEditSetup.exe
Joe