1

I have nView Desktop Manager 146.33 installed on my computer, and I use it to manage windows across my screens. However, I have to manually open and enable it every time my computer is booted. Is there a way to automatically enable nView on startup?

Hennes
  • 65,804
  • 7
  • 115
  • 169
Ryan
  • 3,925

3 Answers3

1

Just put a shortcut of the needed executable file or files in the following path:

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup

Scorpion99
  • 1,149
  • 3
  • 12
  • 33
0

On my system, nView was located at C:\Windows\System32\rundll32.exe "C:\Program Files\NVIDIA Corporation\nview\nvwdmcpl.dll", nViewMain

I found this by:

  1. finding nView Desktop Manager link in my start menu.
  2. right-clicking -> Properties
  3. copy the information from Target
  4. I notice that Start in has "C:\Program Files\NVIDIA Corporation\nview"
SherylHohman
  • 1,193
  • 9
  • 19
0

You make the nView executable into a service.

To do this you need to open powershell and run: sc create nService binPath= "c:/program files/etc"

Then head into services.msc and set it to 'automatic'.

Jay
  • 669