Jump to content

ChrisR

Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Location
    France
  • Interests
    Win7PE_SE

ChrisR's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. thank you in advance ... A bit specific with my PE project, if HRC is on a not writable media (eg: CD), it works well. But we can create shortcuts without being able to save and use them. May be good to lock the entry (or written in the registry) but i know It remains specific enough Regards
  2. Yes, but you have already the Rawmode in HRC EDS_RAWMODE : If set, the function will return all graphics modes reported by the adapter driver, regardless of monitor capabilities. Otherwise, it will only return modes that are compatible with current monitors. It seems the same thing as if we chose manually the Max resolution in your GUI And in case of trouble we have the CTRL-ALT-SHIFT-R to reset the initial resolution I think that's a bonus in HRC for users (not only for me). Up to you Currently, I use another script and Set Max Resolution seems to work correctly. But but my script has less options, Hotkey, multi monitor,... shortly, I LIKE your script
  3. I have this code that works well for me, if it can help you #include <String.au3> #NoTrayIcon $Handle = FileOpen($CmdLine[1],0) $RemoteVersion = "" $Found = False If ($Handle <> -1) Then While Not $Found $Line = FileReadLine($Handle) If (@error <> 0) Then MsgBox(0,"Problem","Cannot find the current version in the downloaded file!") ExitLoop Else $FoundString = StringRegExp($Line,"Download CCleaner \d+\.\d+\.\d+",1) If (Ubound($FoundString)) Then $RemoteVersionArray = StringRegExp($FoundString[0],"\d+\.\d+",1) $RemoteVersion = $RemoteVersionArray[0] $Found = True EndIf EndIf WEnd FileClose($Handle) Else MsgBox(0,"File problem","Cannot open """ & $CmdLine[1] & """ for reading!",10) EndIf If ($Found) Then IniWrite($CmdLine[2],"Version","RemoteVersion",$RemoteVersion) IniWrite($CmdLine[2],"Version","RemoteVersionURL","[url="http://www.piriform.com/ccleaner/download/portable/downloadfile"]http://www.piriform.com/ccleaner/download/portable/downloadfile[/url]") EndIf it is called from a script Not au3 WebGet,http://filehippo.com/download_ccleaner/,%Temp%\DownloadPage.htm If,ExistFile,%Temp%\DownloadPage.htm,Begin Echo,"Processing downloaded file to get current version..." ShellExecute,Hide,%Temp%\GetCCleanerCurrentVersion.exe,"%Temp%\DownloadPage.htm %Temp%\CCleanerVer.ini" End Else,Echo,"Could not check current version!" // See if we have to do a full download IniRead,%Temp%\CCleanerVer.ini,Version,LocalVersion,%LocalVer% IniRead,%Temp%\CCleanerVer.ini,Version,RemoteVersion,%RemoteVer% If,%LocalVer%,NotEqual,%RemoteVer%,Begin Echo,"** Newest CCleaner version is %RemoteVer% **" Run,%ScriptFile%,Download End Else,Echo,"** CCleaner version is %RemoteVer% **"
  4. Works fine for me in 7 and in Win7pe Does a hotkey can be defined in HRC for the maximum resolution (32 bit) whatever the monitor (default hotkey, switch or in HRC.ini). It would allow me to start automatically the PE with always the maximum resolution on any computer.
  5. Hi All, Thank you for these great WinAPI functions My first post with these 2 small possible additions, if it's good, LCIDToLocaleName and LocaleNameToLCID I expected to find the LocaleName (fr-FR) in _WinAPI_GetLocaleInfo, but not. ; #FUNCTION# ==================================================================================================================== ; Name...........: _WinAPI_LCIDToLocaleName ; Description....: Converts a locale identifier to a locale name. ; Syntax.........: _WinAPI_LCIDToLocaleName ( $LCID ) ; Parameters.....: $LCID - The locale identifier (LCID) that specifies the locale or one of the following predefined values. ; ; $LOCALE_INVARIANT ; $LOCALE_SYSTEM_DEFAULT ; $LOCALE_USER_DEFAULT ; ; Windows Vista or later ; ; $LOCALE_CUSTOM_DEFAULT ; $LOCALE_CUSTOM_UI_DEFAULT ; $LOCALE_CUSTOM_UNSPECIFIED ; ; Return values..: Success - String containing the locale name. ; Failure - Empty string and sets the @error flag to non-zero. ; Author.........: ChrisR ; Modified.......: ; Remarks........: None ; Related........: ; Link...........: @@MsdnLink@@ LCIDToLocaleName ; Example........: Yes ; =============================================================================================================================== Func _WinAPI_LCIDToLocaleName($LCID) Local $Ret = DllCall('kernel32.dll', 'int', 'LCIDToLocaleName', 'ulong', $LCID, 'wstr', '', 'int', 500, 'int', 0) If (@error) Or (Not $Ret[0]) Then Return SetError(1, 0, '') EndIf Return $Ret[2] EndFunc ;==>_WinAPI_LCIDToLocaleName ; #FUNCTION# ==================================================================================================================== ; Name...........: _WinAPI_LocaleNameToLCID ; Description....: Converts a locale name to a locale identifier. ; Syntax.........: _WinAPI_LocaleNameToLCID ( $LocaleName ) ; Parameters.....: $LocaleName - The locale Name or one of the following predefined values. ; ; $LOCALE_NAME_INVARIANT ; $LOCALE_NAME_SYSTEM_DEFAULT ; $LOCALE_NAME_USER_DEFAULT ; ; Return values..: Success - String containing the locale identifier (LCID). ; Failure - 0 and sets the @error flag to non-zero. ; Author.........: ChrisR ; Modified.......: ; Remarks........: None ; Related........: ; Link...........: @@MsdnLink@@ LocaleNameToLCID ; Example........: ; =============================================================================================================================== Func _WinAPI_LocaleNameToLCID($LocaleName) Local $Ret = DllCall('kernel32.dll', 'int', 'LocaleNameToLCID', 'wstr', $LocaleName, 'int', 0) If (@error) Or (Not $Ret[0]) Then Return SetError(1, 0, '') EndIf Return $Ret[0] EndFunc ;==>_WinAPI_LocaleNameToLCID
×
×
  • Create New...