<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://biggi.dk/dokuwiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://biggi.dk/dokuwiki/feed.php">
        <title>BiggiWiki - windows:autoit</title>
        <description></description>
        <link>https://biggi.dk/dokuwiki/</link>
        <image rdf:resource="https://biggi.dk/dokuwiki/lib/exe/fetch.php/wiki/dokuwiki.svg" />
       <dc:date>2026-04-19T15:39:35+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/windows/autoit/auto_kill_ie?rev=1440101249&amp;do=diff"/>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/windows/autoit/bandwidth_reporter?rev=1439672202&amp;do=diff"/>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/windows/autoit/reset_outlook_ost_cache?rev=1447921486&amp;do=diff"/>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/windows/autoit/set_default_printer?rev=1447921196&amp;do=diff"/>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/windows/autoit/wait_for_connection?rev=1439672202&amp;do=diff"/>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/windows/autoit/wake_on_lan?rev=1439672202&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://biggi.dk/dokuwiki/lib/exe/fetch.php/wiki/dokuwiki.svg">
        <title>BiggiWiki</title>
        <link>https://biggi.dk/dokuwiki/</link>
        <url>https://biggi.dk/dokuwiki/lib/exe/fetch.php/wiki/dokuwiki.svg</url>
    </image>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/windows/autoit/auto_kill_ie?rev=1440101249&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-20T20:07:29+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>auto_kill_ie</title>
        <link>https://biggi.dk/dokuwiki/doku.php/windows/autoit/auto_kill_ie?rev=1440101249&amp;do=diff</link>
        <description>Some user kept on browsing sites he wasn't supposed to. I was asked to uninstall IE, but that was not possible on that OS, so I just wrote a small script to keep the browser closed at all times.


; Remove tray icon
TraySetState(2)
 
; Loop diz' biatch. KILL, KILL, KILL!
While 1
	ProcessClose(&quot;iexplore.exe&quot;)
	Sleep(1000)
WEnd</description>
    </item>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/windows/autoit/bandwidth_reporter?rev=1439672202&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-15T20:56:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>bandwidth_reporter</title>
        <link>https://biggi.dk/dokuwiki/doku.php/windows/autoit/bandwidth_reporter?rev=1439672202&amp;do=diff</link>
        <description>I had some problems with bandwidth in a low-bandwidth office. Everybody denied using up the bandwidth, so I wrote this script and launched it on their PCs so I could see who was eating up the bandwidth.


#Include &lt;Array.au3&gt;
; Check WMI network data thingy script
Opt(&quot;TrayIconHide&quot;, 1)

; Base vars
$FirstLoop = 1
$LoopMS = 10000
$LoopS = $LoopMS/1000
$DivideBy = 1024

; Log
Global $MainLog = &quot;\\192.168.222.222\log\bw\&quot; &amp; @ComputerName &amp; &quot;.txt&quot;
Func logPrint($text)
; No log? Create one + write.
…</description>
    </item>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/windows/autoit/reset_outlook_ost_cache?rev=1447921486&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-11-19T08:24:46+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>reset_outlook_ost_cache</title>
        <link>https://biggi.dk/dokuwiki/doku.php/windows/autoit/reset_outlook_ost_cache?rev=1447921486&amp;do=diff</link>
        <description>This could also have been a .bat file, there is no specific reason that I made it into an AutoIT script. So, now you know that ;)


; Kill Outlook
RunWait(@ComSpec &amp; &quot; /c taskkill /f /im outlook.exe&quot;)
; zZz
Sleep(1000)
; Delete OST file
RunWait(@ComSpec &amp; &quot; /c del %LOCALAPPDATA%\Microsoft\Outlook\*.ost&quot;)
; zZz
Sleep(1000)
; Start Outlook
RunWait(@ComSpec &amp; &quot; /c start outlook&quot;)</description>
    </item>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/windows/autoit/set_default_printer?rev=1447921196&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-11-19T08:19:56+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>set_default_printer</title>
        <link>https://biggi.dk/dokuwiki/doku.php/windows/autoit/set_default_printer?rev=1447921196&amp;do=diff</link>
        <description>#include &lt;MsgBoxConstants.au3&gt;
Local $sAnswer = InputBox(&quot;Set default printer&quot;, &quot;Enter the name of the printer you want to be default&quot;, &quot;DKTASA06&quot;, &quot;&quot;, -1, -1, 0, 0)

if $sAnswer &lt;&gt; &quot;&quot; Then
	Run(&quot;RUNDLL32 PRINTUI.DLL,PrintUIEntry /y /n &quot; &amp; $sAnswer)
EndIf</description>
    </item>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/windows/autoit/wait_for_connection?rev=1439672202&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-15T20:56:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>wait_for_connection</title>
        <link>https://biggi.dk/dokuwiki/doku.php/windows/autoit/wait_for_connection?rev=1439672202&amp;do=diff</link>
        <description>Some Windows machine needed to start Firefox only when the internal webserver is reachable after boot (the netcard was slow to start or something, I don't remember), so I made a quick script.
The script tries to connect, waits, retries, retries... until it gets a response. Then it starts Firefox.</description>
    </item>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/windows/autoit/wake_on_lan?rev=1439672202&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-15T20:56:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>wake_on_lan</title>
        <link>https://biggi.dk/dokuwiki/doku.php/windows/autoit/wake_on_lan?rev=1439672202&amp;do=diff</link>
        <description>Send a WOL packet to a machine via. AutoIT.


; Network broadcast address
$IPAddress = &quot;192.168.222.255&quot;; This is the broadcast address !

; MAC address of the machine
$MACAddress = &quot;0000000000&quot;

; Hostname of the PC
$Hostname = &quot;CheckInPC&quot;

; Status variables - No messing with this!
$SuccessFullWOL = 0
$LoopCount = 0

While ($SuccessFullWOL = 0)

	If $LoopCount &gt; 5 Then
		MsgBox(&quot;WOL error&quot;, &quot;Tried to start the PC &quot; &amp; $LoopCount &amp; &quot; times, but without success :(&quot;)
	EndIf

	UDPStartUp()

	$conne…</description>
    </item>
</rdf:RDF>
