1. Dashboard
  2. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team
    4. Mitgliedersuche
  3. Forenregeln
  4. Forum
    1. Unerledigte Themen
  • Anmelden
  • Registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Seiten
  • Forum
  • Erweiterte Suche
  1. AutoIt.de - Das deutschsprachige Forum.
  2. Mitglieder
  3. hanady

Beiträge von hanady

  • list folders by Creation date

    • hanady
    • 17. September 2021 um 22:24
    Zitat von Musashi

    I was more concerned that [user = '216202'] hanady [/ user] asked his question in both forums (DE / EN) at the same time .

    Spoiler anzeigen

    https://de.wikipedia.org/wiki/Crosspost…ing_in_Webforen

    In web forums, crossposting refers to the posting of an identical post in different forums or sub-forums.

    Similar to Usenet, multipostings are not permitted within the web forums by some users and administrators, since the threads that are created in this way have no connection to one another and the discussion is therefore conducted simultaneously and unnecessarily in different places. In forums in which multiposting is allowed, the threads are usually linked to one another.

    In a departure from this, in forums crossposting is also the almost simultaneous sending of different posts from different users in one thread. This makes the content traceability difficult with the usual chronological presentation of the postings or false references can occur. [1]

    Helpful users (f, m, d) may do unnecessary work because they usually do not notice the answers in the other forum. So you should choose a forum.

    If no satisfactory solution is found there after a few days, you can try the other forum.

    Alles anzeigen

    Thanks anyhow

    Human beings are always in a rush and few are dealing patiently with their needs

    Accept my best regards

  • list folders by Creation date

    • hanady
    • 17. September 2021 um 22:20
    Zitat von Concara

    I didn't know that the German forum was already "working together" with the English one.

    It used to be said that we are a German forum, so also write the questions in German.

    My opinion:

    English is fine with me too. That doesn't make the German-speaking area so unsympathetic.

    People from other countries can also do something with it.

    However, you could then deal with everything in the English forum and you wouldn't need a German one.

    Water has already described it in the English forum how it can be implemented in Autoit.

    If you do not want to program a lot, the dir command in DOS would also go very quickly.

    [tt] dir "C: \ Windows \ temp" / s / b / a: d / o: -d> c: \ temp \% date% .txt [/ tt]

    Create the file every day and compare it with, for example, Notpad ++ Compare.

    You could also read in the created file with Autoit or read in the output directly with StdoutRead.

    _FileListToArrayRec is quite slow with many files.

    I have never tested how it is when you only need the folders.

    Alles anzeigen

    Thanks a lot

    i've used already: _FileListToArrayRec ($ sPath, Default, 2) with Success

    i'm a Surgeon but learning some useful Autoit Software design for my work

    Accept my respect and best regards

  • list folders by Creation date

    • hanady
    • 15. September 2021 um 11:03

    If anyone can help me to mention the list of folders in a path according to todays date only

    meaning that i have a big Directory containg a lot of foders and everyday added new 7 folders

    so i need the name of those folders according to the craetion date of a given date

    thanks in advance

  • Office-Installation mit Fortschrittsbalken, der den Prozentsatz anzeigt

    • hanady
    • 2. März 2021 um 12:53
    Zitat von MojoeB

    do you mean so ? :)

    C
    #include <ButtonConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <GuiStatusBar.au3>
    #include <ProgressConstants.au3>
    #include <StaticConstants.au3>
    #include <TabConstants.au3>
    #include <WindowsConstants.au3>
    
    #Region gui
    
    
    $Form1 = GUICreate("Software Tool", 640, 555, 228, 312)
    $MenuItem1 = GUICtrlCreateMenu("Menu")
    $ copy = GUICtrlCreateMenuItem ("Copy files from DVD", $ MenuItem1)
    $MenuInfo0 = GUICtrlCreateMenuItem("Info", $MenuItem1)
    $ExitM = GUICtrlCreateMenuItem("Bennden", $MenuItem1)
    $ MenuItem2 = GUICtrlCreateMenu ("Recommended Selection")
    $p64 = GUICtrlCreateMenuItem("Windows 64xBit Programme", $MenuItem2)
    $p32 = GUICtrlCreateMenuItem("Windows 32xBit Programme", $MenuItem2)
    $ Internet = GUICtrlCreateCheckbox ("Internet available", 503, 36)
    $Tab1 = GUICtrlCreateTab(16, 40, 593, 377)
    
    $TabSheet1 = GUICtrlCreateTabItem("Office Bereich")
    
    
    $Checkbox1 = GUICtrlCreateCheckbox("Checkbox1", 80, 113, 161, 31)
    GUICtrlSetState(1, $GUI_DISABLE)
    $Checkbox2 = GUICtrlCreateCheckbox("Checkbox2", 80, 176, 161, 31)
    $Checkbox3 = GUICtrlCreateCheckbox("Checkbox3", 80, 248, 161, 31)
    $Checkbox4 = GUICtrlCreateCheckbox("Checkbox4", 80, 328, 169, 31)
    $Checkbox5 = GUICtrlCreateCheckbox("Checkbox5", 384, 112, 161, 31)
    $Checkbox6 = GUICtrlCreateCheckbox("Checkbox6", 384, 176, 161, 31)
    $Checkbox7 = GUICtrlCreateCheckbox("Checkbox7", 384, 248, 161, 31)
    $Checkbox8 = GUICtrlCreateCheckbox("Microsoft Office 2016 64x", 384, 328, 169, 31)
    
    ;$Pic1 = GUICtrlCreatePic(@ScriptDir & "\autitico\acrobat-9-logo-150x150.jpg", 32, 112, 33, 33)
    ;$Pic2 = GUICtrlCreatePic(@ScriptDir & "\autitico\graphix-adobe-dreamweaver_200x200.jpg", 32, 168, 33, 33)
    ;$Pic3 = GUICtrlCreatePic(@ScriptDir & "\autitico\1787269002.jpg", 32, 240, 33, 33)
    ;$Pic4 = GUICtrlCreatePic(@ScriptDir & "\autitico\flash_icon.jpg", 344, 104, 33, 33)
    ;$Pic5 = GUICtrlCreatePic(@ScriptDir & "\autitico\1372729694.jpg", 344, 176, 33, 33)
    ;$Pic6 = GUICtrlCreatePic(@ScriptDir & "\autitico\openoffice_icon.jpg", 344, 248, 33, 33)
    ;$Pic7 = GUICtrlCreatePic(@ScriptDir & "\autitico\off.jpg", 32, 328, 33, 33)
    ;$Pic8 = GUICtrlCreatePic(@ScriptDir & "\autitico\off.jpg", 345, 323, 33, 33)
    
    $TabSheet2 = GUICtrlCreateTabItem("Multimedia")
    
    $Checkbox9 = GUICtrlCreateCheckbox("Checkbox9", 80, 128, 161, 31)
    $Checkbox10 = GUICtrlCreateCheckbox("Checkbox10", 80, 192, 161, 31)
    $Checkbox11 = GUICtrlCreateCheckbox("Checkbox11", 80, 256, 161, 31)
    $Checkbox12 = GUICtrlCreateCheckbox("Checkbox12", 80, 336, 161, 31)
    $Checkbox13 = GUICtrlCreateCheckbox("Checkbox13", 368, 128, 161, 31)
    $Checkbox14 = GUICtrlCreateCheckbox("VLC Player", 368, 192, 161, 31)
    $Checkbox15 = GUICtrlCreateCheckbox("Checkbox15", 368, 256, 161, 31)
    $Checkbox16 = GUICtrlCreateCheckbox("Checkbox16", 368, 336, 161, 31)
    
    ;$Pic9 = GUICtrlCreatePic(@ScriptDir & "\autitico\Adobe_Photoshop_CS3_icon_by_iirojappinen.jpg", 40, 120, 33, 33)
    ;$Pic10 = GUICtrlCreatePic(@ScriptDir & "\autitico\20080605070947!Adobe_Audition_2.0_icon.jpg", 328, 128, 33, 33)
    ;$Pic11 = GUICtrlCreatePic(@ScriptDir & "\autitico\vlc_icon.jpg", 328, 192, 33, 33)
    ;$Pic12 = GUICtrlCreatePic(@ScriptDir & "\autitico\Divx Player.jpg", 40, 184, 33, 33)
    ;$Pic13 = GUICtrlCreatePic(@ScriptDir & "\autitico\adobe-flash-player-icon-300x300.jpg", 40, 256, 33, 33)
    
    $ TabSheet3 = GUICtrlCreateTabItem ("Internet area")
    
    $Checkbox17 = GUICtrlCreateCheckbox("Google Chrome", 96, 104, 161, 31)
    $ Checkbox18 = GUICtrlCreateCheckbox ("ICQ", 96, 176, 161, 31)
    $Checkbox19 = GUICtrlCreateCheckbox("Windows Live Mail", 96, 256, 161, 31)
    $Checkbox20 = GUICtrlCreateCheckbox("Google Mail", 96, 336, 161, 31)
    $Checkbox21 = GUICtrlCreateCheckbox("Monzilla Firefox", 344, 104, 161, 31)
    $Checkbox22 = GUICtrlCreateCheckbox("Skype", 344, 176, 161, 31)
    $Checkbox23 = GUICtrlCreateCheckbox("Thunderbird", 344, 256, 161, 31)
    $Checkbox24 = GUICtrlCreateCheckbox("Trillian", 344, 336, 161, 31)
    
    $TabSheet4 = GUICtrlCreateTabItem("System")
    
    $Checkbox25 = GUICtrlCreateCheckbox("TuneUp2010", 96, 112, 161, 31)
    $Checkbox26 = GUICtrlCreateCheckbox("OO PartitionManager", 96, 176, 161, 31)
    $Checkbox27 = GUICtrlCreateCheckbox("UltraISO", 96, 248, 161, 31)
    $ Checkbox28 = GUICtrlCreateCheckbox ("Ati graphics driver", 96, 328, 161, 31)
    $Checkbox29 = GUICtrlCreateCheckbox("OO Defrag 12 Pro", 352, 112, 161, 31)
    $Checkbox30 = GUICtrlCreateCheckbox("Checkbox30", 352, 176, 161, 31)
    $Checkbox31 = GUICtrlCreateCheckbox("VMware Workstation", 352, 248, 161, 31)
    $ Checkbox32 = GUICtrlCreateCheckbox ("Nvida graphics driver", 352, 328, 161, 31)
    
    $TabSheet5 = GUICtrlCreateTabItem("Fun und Co")
    
    $Checkbox33 = GUICtrlCreateCheckbox("Wallpapers", 96, 112, 161, 31)
    $Checkbox34 = GUICtrlCreateCheckbox("Steam", 96, 192, 161, 31)
    $Checkbox35 = GUICtrlCreateCheckbox("Checkbox35", 96, 280, 161, 31)
    $Checkbox36 = GUICtrlCreateCheckbox("Checkbox36", 96, 352, 161, 31)
    $Checkbox37 = GUICtrlCreateCheckbox("Styles", 368, 112, 161, 31)
    $Checkbox38 = GUICtrlCreateCheckbox("Checkbox38", 368, 192, 161, 31)
    $Checkbox39 = GUICtrlCreateCheckbox("Checkbox39", 368, 280, 161, 31)
    $Checkbox40 = GUICtrlCreateCheckbox("Checkbox40", 368, 352, 161, 31)
    
    $TabSheet6 = GUICtrlCreateTabItem("Antivirus")
    
    $ Group1 = GUICtrlCreateGroup ("Either", 56, 96, 289, 81)
    $Radio1 = GUICtrlCreateRadio("Kaspersky", 192, 128, 113, 25)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $ Group2 = GUICtrlCreateGroup ("Or", 272, 272, 305, 97)
    $Radio2 = GUICtrlCreateRadio("Mcafee", 424, 312, 113, 25)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    
    $Checkbox41 = GUICtrlCreateCheckbox("Checkbox41", 376, 104, 161, 31)
    $Checkbox42 = GUICtrlCreateCheckbox("Checkbox42", 376, 160, 161, 31)
    $Checkbox43 = GUICtrlCreateCheckbox("Checkbox43", 96, 256, 161, 31)
    $Checkbox44 = GUICtrlCreateCheckbox("Checkbox44", 96, 320, 161, 31)
    
    $ Group3 = GUICtrlCreateGroup ("No antivirus program at all", 168, 200, 353, 49)
    $ Radio3 = GUICtrlCreateRadio ("Neither", 264, 224, 209, 17)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    GUICtrlCreateTabItem("")
    $xxx = GUICtrlCreateButton("Schliesen", 488, 440, 121, 25)
    $sys = GUICtrlCreateButton("sysInfo", 16, 440, 49, 25)
    $Start = GUICtrlCreateButton("Install Starten", 520, 0, 113, 33)
    $ Label1 = GUICtrlCreateLabel ("Start when you have selected all the programs you want:", 64, 8, 416, 20)
    
    $pgbCopy = GUICtrlCreateProgress(16, 424, 585, 9)
    
    $pgbcopy2 = GUICtrlCreateProgress(74, 448, 398, 9)
    
    
    $StatusBar1 = _GUICtrlStatusBar_Create($Form1)
    
    $free_size_label = GUICtrlCreateLabel("", 150, 490, 300, 15)
    
    $free_size = DriveSpaceFree(@HomeDrive)
    $free_size_converted = StringFormat("%.2f", $free_size)
    GUICtrlSetData($free_size_label, "Free on Drive " & @HomeDrive & " " & $free_size_converted & " MB")
    
    _GUICtrlStatusBar_SetMinHeight($StatusBar1, 57)
    GUISetState(@SW_SHOW)
    #EndRegion gui
    
    
    
    
    
    While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
            Case $GUI_EVENT_CLOSE
                Exit
    
            Case $copy
                ; still to come
            Case $MenuInfo0
                ; still to come
            Case $Internet
                $Checkbox1 = GUICtrlSetState(1, $GUI_Enable)
    
            Case $ExitM
                Exit
    
            Case $xxx
                Exit
            Case $Start
                    GUICtrlSetData($pgbCopy, 1)
                    GUICtrlSetData($pgbcopy2, 25)
    
                    If GUICtrlRead($Checkbox1) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 3)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox2) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 6)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox3) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 9)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox4) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 12)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox5) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 15)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox6) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 18)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox7) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 21)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox8) = $GUI_CHECKED Then RunWait ("\setup\8office\Office 2016 Pro Plus x64_silent.exe");bsp
                       GUICtrlSetData($pgbCopy, 24)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox9) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 27)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox10) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 30)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox11) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 32)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox12) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 33)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox13) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 34)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox14) = $GUI_CHECKED Then RunWait("notepad.exe")
                       GUICtrlSetData($pgbCopy, 35)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox15) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 36)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox16) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 37)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox17) = $GUI_CHECKED Then RunWait("notepad.exe")
                       GUICtrlSetData($pgbCopy, 38)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox18) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 39)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox19) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 40)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox20) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 42)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox21) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 43)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox22) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 44)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox23) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 45)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox24) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 46)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox25) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 47)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox26) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 48)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox27) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 49)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox28) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 50)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox29) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 53)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox30) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 55)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox31) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 59)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox32) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 62)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox33) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 65)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox34) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 69)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox35) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 72)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox36) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 75)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox37) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 79)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox38) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 81)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox39) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 85)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox40) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 88)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox41) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 90)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox42) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 94)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
                    If GUICtrlRead($Checkbox43) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 97)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 90)
                    If GUICtrlRead($Checkbox44) = $GUI_CHECKED Then RunWait ("notepad.exe")
                       GUICtrlSetData($pgbCopy, 100)
                       GUICtrlSetData($pgbcopy2, 25)
                       GUICtrlSetData($pgbcopy2, 100)
    
    
            Case $p64
                GUICtrlSetState($Radio3, $GUI_CHECKED)
                GUICtrlSetState($Checkbox1, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox2, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox3, $GUI_CHECKED)
                GUICtrlSetState($Checkbox4, $GUI_CHECKED)
                GUICtrlSetState($Checkbox5, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox6, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox7, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox8, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox9, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox10, $GUI_CHECKED)
                GUICtrlSetState($Checkbox11, $GUI_CHECKED)
                GUICtrlSetState($Checkbox12, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox13, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox14, $GUI_CHECKED)
                GUICtrlSetState($Checkbox15, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox16, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox17, $GUI_CHECKED)
                GUICtrlSetState($Checkbox18, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox19, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox20, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox21, $GUI_CHECKED)
                GUICtrlSetState($Checkbox22, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox23, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox24, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox25, $GUI_CHECKED)
                GUICtrlSetState($Checkbox26, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox27, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox28, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox29, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox30, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox31, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox32, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox33, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox34, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox35, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox36, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox37, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox38, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox39, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox40, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox41, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox42, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox43, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox44, $GUI_unCHECKED)
    
            Case $p32
    
                GUICtrlSetState($Radio3, $GUI_CHECKED)
                GUICtrlSetState($Checkbox1, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox2, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox3, $GUI_CHECKED)
                GUICtrlSetState($Checkbox4, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox5, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox6, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox7, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox8, $GUI_CHECKED)
                GUICtrlSetState($Checkbox9, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox10, $GUI_CHECKED)
                GUICtrlSetState($Checkbox11, $GUI_CHECKED)
                GUICtrlSetState($Checkbox12, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox13, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox14, $GUI_CHECKED)
                GUICtrlSetState($Checkbox15, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox16, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox17, $GUI_CHECKED)
                GUICtrlSetState($Checkbox18, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox19, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox20, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox21, $GUI_CHECKED)
                GUICtrlSetState($Checkbox22, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox23, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox24, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox25, $GUI_CHECKED)
                GUICtrlSetState($Checkbox26, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox27, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox28, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox29, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox30, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox31, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox32, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox33, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox34, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox35, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox36, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox37, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox38, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox39, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox40, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox41, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox42, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox43, $GUI_unCHECKED)
                GUICtrlSetState($Checkbox44, $GUI_unCHECKED)
            Case $Radio3
                GUICtrlSetState($Radio1, $GUI_unCHECKED)
                GUICtrlSetState($Radio2, $GUI_unCHECKED)
            Case $Radio2
                GUICtrlSetState($Radio3, $GUI_unCHECKED)
                GUICtrlSetState($Radio1, $GUI_unCHECKED)
            Case $Radio1
                GUICtrlSetState($Radio2, $GUI_unCHECKED)
                GUICtrlSetState($Radio3, $GUI_unCHECKED)
            Case $sys
                run("notepad.exe")
                ;EndIf
    EndSwitch
    WEnd
    Alles anzeigen

    No, i need to show progress of installation with percentage of insallation real progress amd reach 100 on completion

  • Office-Installation mit Fortschrittsbalken, der den Prozentsatz anzeigt

    • hanady
    • 26. Februar 2021 um 20:31

    Could be depending on Drive get size and estimating the progress bar but i need it with percentage

    like office install windows

  • Office-Installation mit Fortschrittsbalken, der den Prozentsatz anzeigt

    • hanady
    • 26. Februar 2021 um 19:48

    Bitte ich benötige einen Code für: Office-Installation mit Fortschrittsbalken, der den Prozentsatz anzeigt

    oder eine Fortschrittsanzeige für die Programminstallation mit dem Prozentsatz des Installationsprozesses, bis die Installation abgeschlossen ist

  • Flash-Test

    • hanady
    • 26. Februar 2020 um 05:22

    Dear Oscar,

    i need to show detected drives directly shown on combobox as in this great work i must drop the list to show

    Hidden detected drives. so please solve this problem to show detected drives directly shown on combobox especially

    if detect for example one drive. what i mean: from even detected single or first drive must be shown directly on combobox

    Thanks in advance

    Thanks Dear Oscar for your good topic and i already succeded after several trials to do it properly

  • Adding and Installing Automatcally Personal Digital Certificate to Root Store of Windows

    • hanady
    • 11. Februar 2020 um 08:43
    Zitat von water

    Could you solve your problem?
    If yes, please post your solution so it might be useful for others in the future :)

    I only used the file : from this link

    https://home.fnal.gov/~jklemenc/dl/importpfx.zip

    and i've used the code :

    Code
    $scommand = 'importpfx.exe -f Certificate.pfx -p "123456" -t MACHINE -s Root'
    RunWait(@ComSpec & " /C " & $scommand, @ScriptDir, "", @SW_HIDE)
  • Adding and Installing Automatcally Personal Digital Certificate to Root Store of Windows

    • hanady
    • 10. Februar 2020 um 17:58

    many Thanks for all

  • Adding and Installing Automatcally Personal Digital Certificate to Root Store of Windows

    • hanady
    • 9. Februar 2020 um 08:27

    Hi everyone,

    i need a function to add it to Autoit Code to add and install automatically the personal certificate to root store of windows

    so the compiled file will be digitally signed on any computer

  • Flash-Test

    • hanady
    • 7. Februar 2020 um 11:47
    Zitat von Oscar

    I do not think so, because the display of Windows is correct.

    The calculation is based on the binary system (2^10 = 1024 Byte = 1kB). The hard disk manufacturers use the decimal system (10^3 = 1000 bytes = 1kB) to suggest a larger capacity. But a computer works on the basis of the binary system.

    Thanks a lot for clarifiying and explaining this point

    Have a nice day

  • Flash-Test

    • hanady
    • 7. Februar 2020 um 05:40

    Hi Dear Oscar,

    I need again to consult you to show the real USB size as all Autoit codes show only

    USB drive size shown by Windows but you know it's not correct as ever USB Drive

    Has fixed Size when we buy it Like : (e.g 2 GB, 4 GB, 8 GB, 16 GB, 32 GB, 64 GB etc)

    for me to show the real fixed total size of the USB Drive is to use rufus inside the Autoit code

    but if there is a code to show USB Size like rufus it will be better Or please help me with a code

    to add to Your great Project again here :

    Flash Test

    so it will show exactly like rufus the Total USB size

    as i know rufus is the only software showing the real USB Total fixed Sise when we buy it

    Look to pictures please (i used fileinstall : rufus and txtread function)

    So i need you expert work to have function to get USB size like rufus and add to combobox either by rufus or Autoit code

    Thanks again for your Help

    Dateien

    Capture1.JPG 48,12 kB – 0 Downloads Capture2.JPG 50,35 kB – 0 Downloads

Spenden

Jeder Euro hilft uns, Euch zu helfen.

Download

AutoIt Tutorial
AutoIt Buch
Onlinehilfe
AutoIt Entwickler
  1. Datenschutzerklärung
  2. Impressum
  3. Shoutbox-Archiv
Community-Software: WoltLab Suite™