
flappert87
Members-
Posts
16 -
Joined
-
Last visited
flappert87's Achievements

Seeker (1/7)
2
Reputation
-
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
[2.0.5.6 Bug fixes and Enhancements] - Fixed Flash player IE detection within windows 8(x64), note that updates in windows 8 for flash player IE are done by Windows updates. - Fixed 7zip 64bit detection. - Fixed Winrar 5.x detection - Upgraded the windows key finder for windows 8 support. - Upgraded the windows key finder for office 2013 support -
Case "Office 2013 x86" $RegKey = 'HKLMSOFTWAREMicrosoftOffice15.0Registration' IF @OSArch = 'x64' Then $RegKey = "HKLM64SOFTWAREWow6432NodeMicrosoftOffice15.0Registration" For $i= 1 to 250 $var = RegEnumKey($RegKey, $i) If @error <> 0 then ExitLoop $bKey = RegRead($RegKey & '' & $var, 'DigitalProductID') IF Not @error Then ExitLoop Next $iKeyOffset = 0x328 Case "Office 2013 x64" IF @OSArch <> 'x64' Then SetError(1, 0, "Product not found") $RegKey = 'HKLM64SOFTWAREMicrosoftOffice15.0Registration' For $i= 1 to 250 $var = RegEnumKey($RegKey, $i) If @error <> 0 then ExitLoop $bKey = RegRead($RegKey & '' & $var, 'DigitalProductID') IF Not @error Then ExitLoop Next $iKeyOffset = 0x328
-
coffeeturtle reacted to a post in a topic: USSU Unlimited 2.0.5.6 (Software Update Tool)
-
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
Version 2.0.5.5 is released. release log below: [2.0.5.5 Enhancements and changes] - Added Italian and Turkish program translations. - Added the 'Run on system start-up' feature. This feature will start USSU Unlimited in the background during system start-up. - When USSU is started on system start-up it will notify the user with a 'click-able balloon' item to install all new updates at once. A default refresh interval of 2 hours is set for this balloon item(this will be editable in the next version, it will also disable java, flash etc update pop-ups). - Improved the silent installations for the supported applications. - Added a new in-program update feature for future use, to update USSU unlimited components. -
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
Version 2.0.5.5 (released soon) will hold a nice new feature to allow USSU Unlimited to be started on system startup and manage updates in the background this version also holds the Italian translation. if anybody wants to translate please feel free to contact me. Current translations are: English 2.0.5.0 Dutch 2.0.5.0 French 2.0.5.0 German 2.0.5.0 Italian (2.0.5.5) Preferred are Spanish and Swedish -
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
i will try that with avast and avg hope it works -
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
any suggestion on how to fix this? -
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
hi Storm-E, in the past i took a look at the FileHippo UDF... looks really good indeed. but until now i didn't find a good way to implement it into the current ussu unlimited version. within the next few days i will pm you about the future plans with ussu unlimited. including a client / server version and a potential stand alone version. maybe you can join me to optimise the ussu unlimited code and implement a part from the FileHippo UDF functionality. would be cool! -
flappert87 reacted to a post in a topic: USSU Unlimited 2.0.5.6 (Software Update Tool)
-
flappert87 reacted to a post in a topic: USSU Unlimited 2.0.5.6 (Software Update Tool)
-
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
Hi lgvlgv, i have had the same problem with the program running on systems with: AVG, and AVAST. somehow it detects autoit code as malicious. i have looked into this. only thing i could think of is having the .exe files signed by a proper code signing signature. that costs me like 160dollars to do. -
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
thanks for the info. i am going to change it -
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
Thanks for the tip. i will look into it for the next version -
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
wakillon i think that is because it's doing a check if there is a active internet connection. that's why you see the message. i am using: Local $PublicIP = _GetIP() if $PublicIP = -1 Then MsgBox(16, "No internet connection found.", "Please make sure you have a working internet connection.") Exit Else EndIf perhaps that is making the connection... - the winrar i need to take a look at. - i checked the function from the inet.au3 include and it's listed below: Func _GetIP() Local $aReturn, $bRead, $sRead $bRead = InetRead("http://checkip.dyndns.org/") $sRead = BinaryToString($bRead) $aReturn = StringRegExp($sRead, '(?s)(?i)<body>Current IP Address: (.*?)</body>', 3) If @error = 0 Then Return $aReturn[0] EndIf $bRead = InetRead("http://automation.whatismyip.com/n09230945.asp") ; http://forum.whatismyip.com/f14/our-automation-rules-t241/ $sRead = BinaryToString($bRead) If @error Then Return SetError(1, 0, -1) EndIf Return $sRead EndFunc ;==>_GetIP the adresses you get from NOD32 are listed in the function. -
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
- Mechaflash - indeed for now i am. down the line i want to read the version numbers directly form the developers websites.. - wakillon USSU-email.exe is used to email the logfile to a email address the user specifies. debug-error-message.exe is AutoIt3.exe indeed. it's used todo error handling on computers which dont have autoit installed. its able to give a proper error message if anything goes wrong -
mesale0077 reacted to a post in a topic: USSU Unlimited 2.0.5.6 (Software Update Tool)
-
USSU Unlimited 2.0.5.6 (Software Update Tool)
flappert87 replied to flappert87's topic in AutoIt Example Scripts
@ UEZ If there is enough enthusiasm i will look into a offline version. supporting USB. The plan is to create a netwerk/client version next. -
Hi Autoit Folks, i created a software install and update utility, using Autoit called 'USSU Unlimited' What can USSU Unlimited do? USSU Unlimited will scan your computer for installed software, checks the installed versions to the supported versions within the local/online catalog. it will then highlight the status according to: update needed, up-to-date, new version found or not installed. the user is fully in control. Part from main version checker gui: Tray mode: Different menu options: Main installer GUI: Please feel free to check it out at http://www.ussu.eu If anyone is interested on helping within the development please feel free to contact me!..for the source code. attached you will find the English language template, feel free to make a translation Current translations are: English 2.0.5.0 Dutch 2.0.5.0 French 2.0.5.0 German 2.0.5.0 Italian (2.0.5.5) Preferred are Spanish and Swedish Release Log: Latest: 2.0.5.6 [bug fixes and Enhancements] - Fixed Flash player IE detection within windows 8(x64), note that updates in windows 8 for flash player IE are done by Windows updates. - Fixed 7zip 64bit detection. - Fixed Winrar 5.x detection - Upgraded the windows key finder for windows 8 support. - Upgraded the windows key finder for office 2013 support version 2.0.5.5 [Enhancements and changes] - Added Italian and Turkish program translations. - Added the 'Run on system start-up' feature. This feature will start USSU Unlimited in the background during system start-up. - When USSU is started on system start-up it will notify the user with a 'click-able balloon' item to install all new updates at once. A default refresh interval of 2 hours is set for this balloon item(this will be editable in the next version, it will also disable java, flash etc update pop-ups). - Improved the silent installations for the supported applications. - Added a new in-program update feature for future use, to update USSU unlimited components. Regards, Flappert87 language-english.au3
-
email script not sending Attachments
flappert87 replied to flappert87's topic in AutoIt General Help and Support
solved it by putting the .txt file into the body from the email.