Jump to content

MHz

Member
  • Posts

    1,691
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Australia

Everything posted by MHz

  1. It does not look like the AutoIt programming language. Perhaps you copied the source from somewhere and thought it was AutoIt source and saved it to a au3 file?
  2. Avast is probably still in customized Inno Setup installer. Try experimenting with recording the install with the appropriate parameters shown in the Inno Setup help documentation. http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline
  3. Me too. You want some features without the extra stuff. Most modern file systems do this and more i.e ZFS, NTFS, EXT 2,3,4, BTRFS, REISERFS... I am not sure if quotas are as low level as the file system. As for ownership as you quoted is interesting, as each file created is stamped with a number for that user for purpose of "ownership", permissions, quota etc could be nice if you did not want to be tracked local, by intranet or by internet. The number is supposedly unquie worldwide. Like a digital fingerprint. I am not aware of any file system that does this tailored exact to your specifications.
  4. I do not understand these responses. I expected something better, jaclaz. I am not sure if you are joking or being serious. Technology is withheld. Vehicles that can run on water and emit H2O out the exhaust as waste, or can run on air i.e. free energy etc. that go missing. So a expensive hovercraft that runs on fossil fuels is the comparison? Tesla military weapons based on technology about a century old are just being utilized. Something very odd is going on. GPT is the solution to the 32 bit bios limit of 2TB. What has the FAT file system got to with that? <sarcasm>Making FAT work with GPT, oh, a miracle</sarcasm>. I hope the sarcasm is not an insult to you, but a wake up call. The 2TB barrier was bound to be breached no matter what file system is involved. Technology usually follows the flow of like a water tap that drips. Just a gradual change, just for a nice gradual profit. Have a look at other file systems. FAT is as old as Win 9x kept alive by a corporation. Profit! Profit! Profit! Did I assert the word Profit enough? I am guilty of sarcasm again with the profit thing though profit is good, right? Good logic must be bad in comparison perhaps. Your options could be to sacifice what you usually want, to be different. I choose my path, not well liking to my desire though you can too. You mentioning the wheel seems to have little relation in a reply to me with this particular topic of technology. Donuts instead of wheels could have been used. I am guilty of sarcasm again. You may have tickled me some to have brought it on.
  5. jaclaz, 98 to ME was enough FAT32 for me. Thanks, but I do not like using FAT as any FAT file system is very old, outdated technology. Mind you, NTFS is not the only MFT file system around as you might already know. I do not want to go into the what could be when the current powers disagree.
  6. Fat32? No master file table. Reminds me of having a faster internet connection over a decade ago. My hope in the human race is way past lost.
  7. That is awesome. Is that with Compiz-Fusion installed/enabled? I currently have Fedora Linux on my laptop with Gnome 3 and well, very ordinary to use. I considered MATE on last install but the vital super key + type in what to run seemed missing so I went Gnome 3 again. I was a big fan of Gnome since using it since 1995. Before that well, too tricky for me to install and use so I went with what I knew well, Windows.
  8. If you are going to use AutoIt, then the variables will not expand within strings unless you set some options to do that. Binary data in AutoIt starts with 0x so it is like 0x3C00... Here is the correction to your Input and the following RegWrites. The underscores at the end of the lines are continuations characters so the lines do not go off page. $strHome = InputBox("HOmepage", "Provide your chosen Homepage", "https://www.google.com/")if $strHome == "" then Exit 1RegWrite("HKCU\SOFTWARE\MICROSOFT\INTERNET EXPLORER\MAIN", "START PAGE", "REG_SZ", $strHome)RegWrite('HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections', _ 'DefaultConnectionSettings', "REG_BINARY", _ "0x3c000000110000000100000000000000000000000000000001000000000000000000000000000000000000000000000000000000" _)As for your your use of sed, well, that is not clear to my understanding of what you are doing. AutoIt has got Perl Compatible Regular Expression (PCRE) support built in so perhaps you can use FileRead to read the file and use StringRegExpReplace to do the replacements in the string and then use FileWrite to write to the file with the changes.
×
×
  • Create New...