Recent content by TotallyAwesome

  1. T

    Windows 7 How do I access the "SystemParametersInfo " function in a batch file?

    Hello, Here is the text from the error Dialog box when I run the script Error in user32.dll Missing entry: SystemParametersInfo(SPI_SETDESKWALLPAPER) The error message above implies that the "SystemParametersInfo" function is not contained in the...
  2. T

    Windows 7 How do I access the "SystemParametersInfo " function in a batch file?

    Hello, I should have clarified "it doesn't work". the desktop wallpaper does not change and I get a error dialog box. Soemthing happend with WIndows 7 that caused code not to work any more.
  3. T

    Windows 7 How do I access the "SystemParametersInfo " function in a batch file?

    Thanks for the tip on the exact spacing, etc. that eliminated one of the error dialogs. Still getting a error dialog from %SystemRoot%\System32\RUNDLL32.EXE user32.dll,SystemParametersInfo(SPI_SETDESKWALLPAPER) This is a WIndows 7 computer and the UpdatePerUserSystemParamters worked fine on...
  4. T

    Windows 7 How do I access the "SystemParametersInfo " function in a batch file?

    Hello, Thank you for the response to my request. I have made the changes you suggested and I am still getting the error dialogs. Here is the code segment echo "Start of Wallpaper change" REG ADD "HKCU\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d "U:\Azul.bmp" /f REM The following line...
  5. T

    Windows 7 How do I access the "SystemParametersInfo " function in a batch file?

    Hello, I tried the following code in a short bat file echo "Start of Wallpaper change" REG ADD "HKCU\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d "U:\Azul.bmp" /f :: The following line refreshes the desktop. %SystemRoot%\System32\RUNDLL32.EXE user32.dll...
  6. T

    Windows 7 How do I access the "SystemParametersInfo " function in a batch file?

    Hello, Thanks for telling where "SystemParametersInfo" is located. So I write some small test code to try it out.
  7. T

    Windows 7 How do I access the "SystemParametersInfo " function in a batch file?

    Hello, Thanks for the response. I am migrating alot of computers from WIndows XP Pro to WIndows 7. Here is a example of one the things I am doing on the XP Pro machines :std_wallpaper echo "Start of Wallpaper change" REG ADD "HKCU\Control Panel\Colors" /v Background /t REG_SZ /d "0 0 255"...
  8. T

    Windows 7 How do I access the "SystemParametersInfo " function in a batch file?

    Hello, I would like to use the following function "SystemParametersInfo" in a batch file on a Windows 7 machine. Is it in a DLL somewhere?
  9. T

    Windows 7 Windows 7 equivalnet to "UpdatePerUserSystemParameters"

    Hello, I have a batch file that I am using to change the various items on my computer. I put the changes in the registry and then use the following command to implement the change %SystemRoot%\System32\RUNDLL32.EXE user32.dll, UpdatePerUserSystemParameters This approach worked great in...
Back
Top Bottom