Messages - skrommel [ switch to compact view ]

Pages: prev1 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 187next
36
 :) a.smile is a simple script to replace urls in Internet Eplorers address bar to change www.amazon.com to smile.amazon.com to support charity.

ASmile.gif

Skrommel

37
Post New Requests Here / Re: Auto print Email Attachment
« on: July 22, 2017, 07:10 PM »
 :) PrintMail is a wrapper for getmail.exe from http://www.interlog.com/~tcharron/getmail.html.

Just add your user information, save the file as PrintMail.ahk in a folder, download and place getmail.exe beside it, and it will extract and print the attachments, and move the files to the Printed folder.
Download and install AutoHotkey to run the script.

Skrommel

23.07.2017: Added option to set target printer

;PrintMail.ahk
;  Print mail attachments, uses getmail.exe from http://www.interlog.com/~tcharron/getmail.html
;Skrommel @ 2017

target=Printed
popserver=
port=110
username=
password=
pause=60
deletefromserver=0
printer=

#NoEnv
#SingleInstance,Force
SetWorkingDir,%A_ScriptDir%

If deletefromserver=1
  delete=-delete
If printer<>
  printer=/d "%printer%

FileCreateDir,%target%
Loop
{
  RunWait,cmd /c getmail.exe -u %username% -pw %password% -s %popserver% -port %port% %delete% -xtract,,Hide
  FileMove,MSG*.txt,%target%
  Loop,*.*
  {
    If A_LoopFileName In PrintMail.ahk,PrintMail.exe,getmail.exe
      Continue
    RunWait,print %printer% "%A_LoopFileName%"
    FileMove,%A_LoopFileName%,%target%
  }
  Sleep,% 1000*pause
}

38
 :) Added a master volume control, orbis, I'll see if I can add a more targeted volume solution. Also, I found the error in the hourly files code, nogojoe, and I added a checkbox to choose between the play options.

39
Coding Snacks / Re: Connect by command
« on: July 19, 2017, 11:19 AM »
Yes, it is possible. :) You can save and load Wifi-profiles using netsh.

https://community.spiceworks.com/how_to/24989-export-import-wireless-network-info-on-windows-machines

40
Finished Programs / Re: DONE: MultiMonitorManager
« on: July 18, 2017, 03:13 PM »
:) Just uploaded a version of MultiMonMan running on Windows 10!

Pages: prev1 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 187next
Go to full version