OrcoXP
07-11-2006, 05:37 AM
I can see it now...
Check Boxes to select the tweaks you want.
Radial Buttons for those that would conflict.
2 Main sections...one for [ExtraFileEdits] (hivesys.inf and such) and one for the INF method.
If a tweak is applied through [ExtraFileEdits] then disable the ability to add it via INF...to reduce redundancy.
And the option to break the operation and save a new Tweaks Addon CAB file.
Just "AppendToFile" with the appropriate opening info...(Entries.ini)
;#### Tweaks Addon by %USERNAME% ####
[General]
Builddate = %DATE%
Description = Tweaks Addon by %USERNAME%
Language = English
Title = Tweaks Addon by %USERNAME%
Version = 1.0
Website = http://siginet.ryanvm.net/forum
then if anything in the INF method is chosen...(Entries.ini)
[Filenames]
%TweaksInf%=RVMTweaks.inf
[Sysoc]
RVMTweaks=ocgen.dll,OcEntry,%TweaksInf%,HIDE,7
[dosnet_files]
d1,%TweaksInf%
[txtsetup_files]
%TweaksInf% = 100,,,,,,,20,0,0
then if anything in the [ExtraFileEdits] method is chosen...(Entries.ini)
[ExtraFileEdits]
then for each selection from the [ExtraFileEdits]...(Entries.ini)
;specific tweak
Filename|Original Text String|New Text string|1
and additionally if anything in the INF method is chosen...(RVMTweaks.inf)
;#### Tweaks Addon by %USERNAME% ####
[Version]
Signature=$Windows NT$
[Optional Components]
RVMTweaks
[DefaultInstall]
OptionDesc = "Tweaks Addon by %USERNAME%"
Tip = "Tweaks Addon by %USERNAME%"
Modes = 0,1,2,3
CopyFiles = RVMTweaks.AddReg
[RVMTweaks]
OptionDesc = "Tweaks Addon by %USERNAME%"
Tip = "Tweaks Addon by %USERNAME%"
Modes = 0,1,2,3
CopyFiles = RVMTweaks.AddReg
[RVMTweaks.AddReg]
And finally for each selection in the INF method...(RVMTweaks.inf)
;specific tweak
HKU,".Default\AppEvents\Schemes\Apps\.Default\.Default\ .Current,,,"Windows Vista Default.wav"
hehe...I understand the concept of it but lack the progamming ability to create the tool...so if I have to wait until v1.5 then I understand... :wink:
PS. I have been looking for a way to AppendToFile with JavaScript or VB or anything that I can run from a webapp but I have not found anything good...if you can assist I would appreciate it greatly
Check Boxes to select the tweaks you want.
Radial Buttons for those that would conflict.
2 Main sections...one for [ExtraFileEdits] (hivesys.inf and such) and one for the INF method.
If a tweak is applied through [ExtraFileEdits] then disable the ability to add it via INF...to reduce redundancy.
And the option to break the operation and save a new Tweaks Addon CAB file.
Just "AppendToFile" with the appropriate opening info...(Entries.ini)
;#### Tweaks Addon by %USERNAME% ####
[General]
Builddate = %DATE%
Description = Tweaks Addon by %USERNAME%
Language = English
Title = Tweaks Addon by %USERNAME%
Version = 1.0
Website = http://siginet.ryanvm.net/forum
then if anything in the INF method is chosen...(Entries.ini)
[Filenames]
%TweaksInf%=RVMTweaks.inf
[Sysoc]
RVMTweaks=ocgen.dll,OcEntry,%TweaksInf%,HIDE,7
[dosnet_files]
d1,%TweaksInf%
[txtsetup_files]
%TweaksInf% = 100,,,,,,,20,0,0
then if anything in the [ExtraFileEdits] method is chosen...(Entries.ini)
[ExtraFileEdits]
then for each selection from the [ExtraFileEdits]...(Entries.ini)
;specific tweak
Filename|Original Text String|New Text string|1
and additionally if anything in the INF method is chosen...(RVMTweaks.inf)
;#### Tweaks Addon by %USERNAME% ####
[Version]
Signature=$Windows NT$
[Optional Components]
RVMTweaks
[DefaultInstall]
OptionDesc = "Tweaks Addon by %USERNAME%"
Tip = "Tweaks Addon by %USERNAME%"
Modes = 0,1,2,3
CopyFiles = RVMTweaks.AddReg
[RVMTweaks]
OptionDesc = "Tweaks Addon by %USERNAME%"
Tip = "Tweaks Addon by %USERNAME%"
Modes = 0,1,2,3
CopyFiles = RVMTweaks.AddReg
[RVMTweaks.AddReg]
And finally for each selection in the INF method...(RVMTweaks.inf)
;specific tweak
HKU,".Default\AppEvents\Schemes\Apps\.Default\.Default\ .Current,,,"Windows Vista Default.wav"
hehe...I understand the concept of it but lack the progamming ability to create the tool...so if I have to wait until v1.5 then I understand... :wink:
PS. I have been looking for a way to AppendToFile with JavaScript or VB or anything that I can run from a webapp but I have not found anything good...if you can assist I would appreciate it greatly