Recent content by Nekrovar

  1. N

    Program to auto-zip Files on a Server and File them Elsewhere on the Network

    I know minimal about PowerShell or making scripts in general. This is a Windows 2008 R2 virtual machine FYI.
  2. N

    Program to auto-zip Files on a Server and File them Elsewhere on the Network

    So I wrote the following script: --------------------------------------------- @echo off 7za a -tzip "C:\Users\PBKAdmin\Dropbox\Failed Emails" "C:\Program Files (x86)\Persits Software\AspEmail\Queue\Failed" pause ----------------------------------------------- I installed 7Zip program on the...
  3. N

    Program to auto-zip Files on a Server and File them Elsewhere on the Network

    Hello, As a part of some weekly maintenance, I must check a web server for failed emails. I usually have to go into the folder on that server, compress/zip them, email them to myself and then file them away in a designated location for someone else to deal with. I'd like to know if there was a...