95 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
1
answer
77
views
Attempting to write a .bat script for reinstalling printers
I am attempting to write my first batch program to automate installing printers. I run into a problem when I try and execute
IF %input%==N (rundll32 printui.dll PrintUIEntry /in /n\\printerserver\%...
0
votes
0
answers
195
views
Rundll32.exe doesn't function as expected, when attempting to call function in custom DLL
I am learning how to write C++ in order to better understand how DLL work and how functions are called from within DLL. I am attempting to run calc.exe from within my DLL using rundll32.exe. In my ...
1
vote
0
answers
142
views
Programatically launch Update Driver Wizard for specific device
How do you programmatically open the "Update driver" wizard for a specific Device?
I am trying to replicate the Device Manager functionality from a WinForms C# app. So far I was able to ...
0
votes
0
answers
122
views
How to create a device driver installation dialog with a device name using CMD?
I want to create a driver installation balloon (i.e that says "Installing Device Driver software", but if I use this command:
rundll32 pnpui.dll,SimplifiedDINotification
It creates like ...
-1
votes
1
answer
572
views
Python get printer dialog configuration set by the user
So I am trying to make a python Windows application that has a button where it displays the user the printer dialog so he can set the configuration for the printer. When I say printer dialog I mean ...
0
votes
1
answer
871
views
Wix custom action shows a error dialog from RunDLL "Access is denied" when installer is ran a second time
Created an installer of a toolkit with a Visual Studio extension as part of it in Wix 3.14. It contains a custom action that searches the local system for installed versions of Visual Studio 2019 and ...
0
votes
1
answer
183
views
Call dll which is in folder other than system32
I want to call my dll through a shortcut, but I need to identify the current directory the dll is in.
At the moment I can only call it this way:
C:\Windows\System32\rundll32.exe C:\Users\Public\BUS....
0
votes
2
answers
518
views
Control Panel Applet Execution Command Line Syntax
I'm trying to invoke Internet Options Control Panel applet through command line (Run dialogue). Specifically, the "Connections" tab.
I used the following syntax:
rundll32.exe shell32.dll,...
-1
votes
1
answer
2k
views
How to create a native C++ DLL that I can run with rundll32.exe without specifying an entry point
How I will be able to create a native dll that I can execute with rundll32.exe without specifying an entry point:
Example :
C: \> rundll32.exe mydll.dll
I created a DLL project on visual studio ...
0
votes
1
answer
796
views
Can't disable keyboard with rundll32 library
Good afternoon everyone! I have a question:
I cannot disable the keyboard in C #, the error "keyboard" module is not found.
This is code how I tried to disable keyboard:
Process.Start("...
0
votes
1
answer
212
views
How would I use rundll32.exe to run a pyd?
I made a .pyd file with this source:
def hello():
print("Hello world")
and I want to run hello() from rundll32 (Or any C code in general)
I tried rundll32 hello.pyd,hello() and rundll32 ...
1
vote
1
answer
4k
views
Powershell change wallpaper on windows 10 for current logged on user
I was given a challenge to solve for making a little fun in the office. So I've tried to setup a VM lab with a windows server 2012 R2 & client Windows 10 to test this on.
The challenge I am facing:...
2
votes
0
answers
791
views
RUNDLL32.EXE MSHTML.DLL,PrintHTML with Javascript
I've been working on making a new invoice for our order processing system - however the groundwork for this system is very old and it's made by an external company so I can't change it.
For a few ...
2
votes
0
answers
459
views
BlockInput from DLL in Batch file
I am trying to create a simple batch script to run in windows that wait for 20 minutes and then block the inputs by a minute.
TIMEOUT 1200
rundll32.exe User32.dll, BlockInput 1
TIMEOUT 60
rundll32....
-2
votes
1
answer
61
views
The meaning of the rundll32 command [closed]
rundll32 url.dll,FileProtocolHandler https://bsu.by
What does each word mean and why does it eventually open this link in the default browser?