Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Get in the Zone with ADS

Aug
1,915
68
Here are a few aliases that I use to work with the Zone.Identifier file contained in files that I download from the Internet.
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
 
Back
Top