Is it possible to configure PWB to prevent certain types of file from being downloaded e.g. *.exe and *.msi files?
Stephen
Deny downloading certain file extensions
Moderators: Tyler, Scott, PWB v2 Moderator
You can use the PWB URL filter to do this.
http://teamsoftwaresolutions.com/phpBB2 ... c.php?t=13
http://www.microsoft.com/technet/prodte ... x?mfr=true
--Scott
http://teamsoftwaresolutions.com/phpBB2 ... c.php?t=13
We also use Windows Polices to only allow applications we want to run to prevent patrons from starting applications on our systems.You can control the types of files that are accessed by using regular expressions in the PWB URL filter. Use the regular expression to match the end of the URL to deny access to the type of file.
For example to prevent downloading of ZIP and EXE type files, put this in your URL filter file.
+all
-\.zip$
-\.exe$
The "+all" allows all URLs, the "\." interrupts the "." as literal, the "exe" or "zip" is the type of file, and the "$" is the regular expression to match the end.
This allows only URLs that end with ".zip", or ".exe" to be denied, while URLs that simply contain ".zip", or ".exe" to be allowed.
http://www.microsoft.com/technet/prodte ... x?mfr=true
--Scott