Link to home
Start Free TrialLog in
Avatar of cpatte7372
cpatte7372Flag for United Kingdom of Great Britain and Northern Ireland

asked on

Embed Writing in Windows 7 Desktop Screen Pt2

Hello Experts

I have installed bgInfo v4.20 as advised by Experts. However, each time I reboot the desktop settings disappear.

Can someone show me how to make the desktop settings remain when I reboot or log off.

Regards

cpatte
Avatar of Helao Mwapangasha
Helao Mwapangasha
Flag of Namibia image

Avatar of cpatte7372

ASKER

Experts,

Just so you I access the PC via RDP. So this might be part reason why it disappears each time I log off, but not sure
helao

I tried


reg add HKU\.DEFAULT\Software\Sysinternals\BGInfo /v EulaAccepted /t REG_DWORD /d 1 /f

And it didn't work
ASKER CERTIFIED SOLUTION
Avatar of Helao Mwapangasha
Helao Mwapangasha
Flag of Namibia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hela

The following almost works, but I can't get it to work as a batch file:

\Users\N21\Downloads\bgInfo\Bginfo.exe \Users\N21\Downloads\bgInfo\mybgp.bgi /TIMER:00 /nolicprompt

It works if I run it from start menu
try starting the batch file with

echo on


and ending with

echo off
So I looked at your other link and created the following:

@echo off
cd
CALL "c:Users\N21\Downloads\bgInfo\Bginfo.exe" "c:Users\N21\Downloads\bgInfo\mybgp.bgi" /TIMER:00 /nolicprompt

but didn't work
change the path to a UNC path instead and tey it again

\\servername\share\etc
Helao

What about;

@echo off
cd
CALL "\\192.168.99.110\N21\Downloads\bgInfo\Bginfo.exe" "\\192.168.99.110\Users\N21\Downloads\bgInfo\mybgp.bgi" /TIMER:00 /nolicprompt
make sure the path is the same for both locations in the script

\\ip\c$\users\n21etc

but i would use a share if u decide to apply it in production. not all users will have access to "c$" admin share
Helao

So I tried:

@echo off
cd\
CALL "\\192.168.99.110\c$\users\N21\Downloads\bgInfo\Bginfo.exe" "\\192.168.99.110\c$\Users\N21\Downloads\bgInfo\mybgp.bgi" /TIMER:00 /nolicprompt

no joy
Helao

Thanks.  

I will try it in the morning

Cheers
This link did actually work.

Thanks