yaP HKLM question Help!

If you are currently developing portable freeware or planning to do so, use this forum to discuss technical implementation, seek out like-minded developers for partnership, or solicit interested users for beta testing.
Post Reply
Message
Author
punk
Posts: 1
Joined: Sat Jan 11, 2014 1:45 pm

yaP HKLM question Help!

#1 Post by punk »

hey guys new to yap my main gig is PAF but i want to give this a try it looks great..
so i made a yaP of goldwave that i own .

i am working with beta..5.0 and it works great exept for one thing it is leaving
a reg key behind an "HKLM" it is pulling out my HKCU just fine?
here is my code: any Ideas....thanks

[GENERAL]
application = App\goldwave\GoldWave.exe
!admin = 1

[BEFORE]
message = Hello world!
regkey = HKCU\Software\GoldWave :: App\registry\one.reg
regkey = HKCU\S-1-5-21-2764583246-2298883548-3252906630-1001\Software\GoldWave :: App\registry\two.reg
regkey = HKLM\GoldWave\GoldWave\Options :: App\registry\three.reg

[AFTER]
-regkey = HKCU\Software\GoldWave :: ifempty
-regkey = HKCU\S-1-5-21-2764583246-2298883548-3252906630-1001 :: ifempty
-regkey = HKLM\SOFTWARE\GoldWave :: ifempty

User avatar
tproli
Posts: 1172
Joined: Sat Sep 09, 2006 10:14 am
Location: Hungary
Contact:

Re: yaP HKLM question Help!

#2 Post by tproli »

Code: Select all

regkey = HKLM\GoldWave\GoldWave\Options :: App\registry\three.reg
Are you sure this line should not read like this?

Code: Select all

regkey = HKLM\Software\GoldWave\Options :: App\registry\three.reg
The second one should clean up the HKLM\Software\GoldWave key.

Post Reply