Search found 239 matches

by The Freezer
Sun Apr 22, 2012 3:41 am
Forum: Tutorials, Tweaks & Tricks
Topic: Tips on using SetupS Sendto with PE environs
Replies: 9
Views: 12229

Re: Tips on using SetupS Sendto with PE environs

Ugh. I just found out SetupS doesn't convert incoming variables like that (or at least not as it is processing the input arguments).

Back to the drawing board. LOL
by The Freezer
Sun Apr 22, 2012 2:59 am
Forum: Tutorials, Tweaks & Tricks
Topic: Tips on using SetupS Sendto with PE environs
Replies: 9
Views: 12229

Re: Tips on using SetupS Sendto with PE environs

Okay, so SetupS has (for quite some time actually) the following function -- which only gets called whenever the variable %CDROM% or %CDDrive% is used: Func GetOpticalDrive() If $Debug Then _ConsoleWriteDebug('@@ Debug(Trace) SetupS.Core.au3|GetOpticalDrive()' & @CRLF) Local $i, $Found, $Drive, ...
by The Freezer
Thu Apr 19, 2012 6:56 pm
Forum: Tutorials, Tweaks & Tricks
Topic: Tips on using SetupS Sendto with PE environs
Replies: 9
Views: 12229

Re: Tips on using SetupS Sendto with PE environs

Yes, and I think Ghost has already tested the method to be working. Yea!

We can even drop (or rename) "\ppAppsLive" in favor of "\ppApps" if we wanted.
by The Freezer
Thu Apr 19, 2012 3:35 am
Forum: Tutorials, Tweaks & Tricks
Topic: Tips on using SetupS Sendto with PE environs
Replies: 9
Views: 12229

Re: Tips on using SetupS Sendto with PE environs

And one more, greatly simplified example -- which is basically example 1 being applied to the situation with example 3 -- in that it doesn't matter whether or not the Live PE drive is writable nor that it's an XP-Live disk, etc. "ppAppsGen.cmd": @echo off SetupS "%~d0\ppApps" -Re...
by The Freezer
Thu Apr 19, 2012 3:20 am
Forum: Tutorials, Tweaks & Tricks
Topic: Tips on using SetupS Sendto with PE environs
Replies: 9
Views: 12229

Re: Tips on using SetupS Sendto with PE environs

Example 2: Use SetupScp with the -ppAppsDrive=[x] switch to set the ppDrives. This assumes the Live PE drive is "writable" (such as a bootable usb flash-drive) and has a folder called "\ppApps" with suitable apps, of course. @SetupScp -ppAppsDrive=%SystemDrive% -ppGamesDrive=%Sy...
by The Freezer
Thu Apr 19, 2012 2:29 am
Forum: Big Ideas
Topic: Possible new FileListToArray method for AutoIt
Replies: 10
Views: 16058

Re: Possible new FileListToArray method for AutoIt

Did some more fine-tuning on this function. And revised the first post to reflect my most recent changes. :) Some notes: ⋅ Swapped $iFlag values for return Full-path (now "4" to set) and Recursion ("8" to set). ⋅ Keeping the same syntax for sorting as the DIR ...
by The Freezer
Wed Apr 18, 2012 5:56 pm
Forum: Tutorials, Tweaks & Tricks
Topic: Tips on using SetupS Sendto with PE environs
Replies: 9
Views: 12229

Re: Tips on using SetupS Sendto with PE environs

Example 1: Simply use the -Regen switch. This switch allows the parent folder to be anything . It also prevents SetupS from installing apps and only "regenerates" them -- this is the so-called Regen-mode. For example, the Live PE disk might have a folder called "\ppAppsLive" (an...
by The Freezer
Wed Apr 18, 2012 5:37 pm
Forum: Tutorials, Tweaks & Tricks
Topic: Tips on using SetupS Sendto with PE environs
Replies: 9
Views: 12229

Tips on using SetupS Sendto with PE environs

One of the abilities of SetupS -- the creating of shortcuts -- is somewhat complex and therefore can cause some confusion. For example, not many are aware that whole folders can be "sent to" SetupS. Such as "D:\ppApps" or "D:\Stuff.For.SetupS.To.Install". :lol: With Liv...
by The Freezer
Thu Apr 12, 2012 10:47 pm
Forum: The Uncensored Free Speech Zone
Topic: Is America Really Free?
Replies: 4
Views: 8679

Re: Is America Really Free?

Yeah, you wouldn't be the first to claim that politicians are prostitutes with suits -- with apologies to honest prostitutes ;). And one of the platforms of the Occupy movement has been a constitutional amendment to remove big business from government.
by The Freezer
Thu Apr 12, 2012 5:03 am
Forum: The Uncensored Free Speech Zone
Topic: Is America Really Free?
Replies: 4
Views: 8679

Is America Really Free?

Is America Really Free? 11.04.2012 11:43 By Vasily Georgevich The recent outcry by the American Media complaining of mass riots over the Russian election has gotten me thinking. Do the youth in Russia protesting understand exactly how free they are compared with the American's slandering them? Cons...
by The Freezer
Tue Apr 10, 2012 6:59 pm
Forum: Big Ideas
Topic: Possible new FileListToArray method for AutoIt
Replies: 10
Views: 16058

Re: Possible new FileListToArray method for AutoIt

Also you might want to check your sort order option. At least in Win7 x64, /ong gives different results than /ogn. I think you want /ogn. Yeah, it looks like /ong gives the exact same results as /on regardless (basically the 'n' ignores the 'g'). Whereas /og just separates folders from files withou...
by The Freezer
Mon Apr 09, 2012 3:41 pm
Forum: Big Ideas
Topic: Possible new FileListToArray method for AutoIt
Replies: 10
Views: 16058

Re: Possible new FileListToArray method for AutoIt

To be fair, _FileListToArray mentions that it is basically the DIR /b and when you think about it that if you're not doing recursive listings then you probably already would (or should) know the path you're getting the listing for anyway. Since it would make no sense or I don't think anything useful...
by The Freezer
Mon Apr 09, 2012 5:45 am
Forum: Big Ideas
Topic: Possible new FileListToArray method for AutoIt
Replies: 10
Views: 16058

Re: Possible new FileListToArray method for AutoIt

Even better than advertised! Wonderful! A success then I assume? Partially. It seems the results greatly improve with increased number of files/folders to collect -- for example, from the "C:\Windows" folder. But the results actually get worse with much smaller numbers such as from the &q...
by The Freezer
Mon Apr 09, 2012 2:27 am
Forum: Big Ideas
Topic: Possible new FileListToArray method for AutoIt
Replies: 10
Views: 16058

Re: Possible new FileListToArray method for AutoIt

So far my tests are showing an increase in speed of between 30-40%. :thumbup:

EDIT: Appears to be for recursive listings only though. It's actually a little slower than the original otherwise (likely due to taking an overhead cost with the external call).
by The Freezer
Sun Apr 08, 2012 11:08 am
Forum: Big Ideas
Topic: Possible new FileListToArray method for AutoIt
Replies: 10
Views: 16058

Possible new FileListToArray method for AutoIt

Got the following from Onepiece via BP -- with some slight modifications from me. It does seem faster, so later I'll do some comparative timings with SetupS between the two methods. If it's significantly faster -- the claims are as high as 20% -- then I'll adapt it to SetupS (v8 & v9). :clap: #i...
by The Freezer
Sat Apr 07, 2012 3:59 pm
Forum: News
Topic: red_hat_joins_the_billiondollar_club
Replies: 1
Views: 6187

Re: red_hat_joins_the_billiondollar_club

Perhaps more significantly, Red Hat's success validates the idea that open-source software can form the basis of a viable business model.

... and that right there sums up my feelings exactly :)
by The Freezer
Sat Apr 07, 2012 3:10 pm
Forum: News
Topic: Open and Decentralized DNS (ODDNS) To Defeat Censorship
Replies: 7
Views: 10303

Open and Decentralized DNS (ODDNS) To Defeat Censorship

This appears very promising... I hope it's successful. :thumbup: Reprinted from TorrentFreak : For the last couple of years discussion around censorship of websites in the West has become as prolific as the that around already established blockades in countries such as China and Iran. While meddlin...
by The Freezer
Sat Apr 07, 2012 11:27 am
Forum: Tutorials, Tweaks & Tricks
Topic: google-docs-secrets-for-students
Replies: 1
Views: 6932

Re: google-docs-secrets-for-students

Cool and useful bit of knowledge, thanks

B-)
by The Freezer
Sat Apr 07, 2012 2:34 am
Forum: About
Topic: How is this place hosted?
Replies: 14
Views: 25505

Re: How is this place hosted?

Add Filezilla FTP server to that list (first post) :)
by The Freezer
Fri Mar 30, 2012 1:44 am
Forum: Problem/Solution
Topic: Anti-Malware False Positives
Replies: 1
Views: 5764

Re: Anti-Malware False Positives

Norton 360 First try removal through the Add/Remove Programs Control Panel -- in many cases, you can simply remove Norton products through the Add/Remove Control Panel. http://www.lastos.org/team/av-uninstallers/norton.360/nortonaddremove.jpg http://www.lastos.org/team/av-uninstallers/norton.360/no...
by The Freezer
Fri Mar 30, 2012 1:05 am
Forum: Problem/Solution
Topic: Anti-Malware False Positives
Replies: 1
Views: 5764

Anti-Malware False Positives

We here at ssTek do not code viruses. In addition, everything here is open-source. Which means anyone can merely review the code and find out for themselves that there's no security issue and that it's perfectly safe. Unfortunately, when working with ssTek tools, it is not uncommon to encounter fals...
by The Freezer
Wed Mar 28, 2012 9:22 pm
Forum: Documentation and Reference
Topic: ssWPI v10 User Manual
Replies: 3
Views: 7498

Re: ssWPI v10 User Manual

bphlpt wrote:Thanks, pacav! I didn't know there was an ssWPI v10 yet. Who created that? LOL

:lol: I just assumed that was your doing... you know, since I was bumping up the major with SetupS (to v9)
by The Freezer
Fri Mar 23, 2012 5:26 pm
Forum: Other Tools
Topic: VBA macro to convert XenForo BBCode to phpBB code
Replies: 3
Views: 6360

Re: VBA macro to convert XenForo BBCode to phpBB code

Here's how to add a keyboard shortcut for this macro (I use Alt+A in this example). ⋅ First from the menubar, click "Tools", select "Customize..." (it's right above "Options"). ⋅ Then at the bottom of that box click the "Keyboard..." button...
by The Freezer
Sun Mar 18, 2012 3:19 pm
Forum: About
Topic: How is this place hosted?
Replies: 14
Views: 25505

Re: How is this place hosted?

And now a possibility for file hosting using torrents: Repository (torrents) So far my tests have proven this as feasible and very promising. Pros: ⋅ Free (seeding). ⋅ Unlimited speed (for torrents but I suspect this will be the file-locker's seeding speed which could be rather h...
by The Freezer
Wed Mar 14, 2012 4:52 am
Forum: Downloads and Updates
Topic: Beta Development
Replies: 1
Views: 5593

Re: SetupS Sendto Suite (Alpha)

Oh, yeah, to ensure all are at the same v8 level I've pushed the RC2 release onto the nightly builds channel too. This is so that everybody will be up to speed on exactly the latest v8 build before I start releasing v9 builds here later.

"Know what I mean, Vern?" :crazy:
by The Freezer
Sun Mar 11, 2012 11:50 pm
Forum: Deployment Packages Library
Topic: Possibility of using torrents for the repository
Replies: 5
Views: 9395

Possibility of using torrents for the repository

Testing out a new file-locker/torrent seeder service called Netkups . Torrent downloads are free and have no limits. From their FAQ: Torrent is virtually free for us, because pieces are shared between users, while we make sure the file does not die, as long as we have a copy. That's why torrent down...
by The Freezer
Sat Feb 18, 2012 8:14 pm
Forum: Discussion
Topic: List of useful development tools...
Replies: 15
Views: 19126

Re: List of useful development tools...

This topic now being maintained via this thread: SetupS Project Development Tools
by The Freezer
Mon Feb 13, 2012 12:59 am
Forum: Big Ideas
Topic: New ppGame CATS
Replies: 4
Views: 7036

Re: New ppGame CATS

Man, you were totally on the mark with that LFD comment. :wtf:
by The Freezer
Sun Feb 12, 2012 8:40 pm
Forum: Big Ideas
Topic: New ppGame CATS
Replies: 4
Views: 7036

Re: New ppGame CATS

the ":" was a typo :roll: I also don't intend to use the "/" character since that's already being used as a delimiter (for categories) and could also be confused with the path characters used with the startmenu catalog entries. Also, both the <Category> and <Catalog> sections wer...

Go to advanced search