Windows - Where can I find a system() list of parameters? [closed] - operating-system

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
This is my first question here in StackOverflow, so if this question has already been made or is in the wrong topic, please excuse me.
I'm studying C using Windows and I'm looking for a list/book/manual of usable parameters for the system() function. Stuff like system("pause"), system("cls"), system("color 1f"), etc...
Thanks for the help in advance.

The purpose of system() API is to execute an external command, the parameters are the arguments of the command that you are trying to execute, just like if you were typed in shell prompt, there is not anything special to pass, just put into the string.

Related

Making perl modules executable [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I am new to Perl. I have created a Perl module(.pm). I am trying to make it executable. I wanna know is it possible to make Perl module executable or I am going wrong?
Thanks in advance.
Are you asking how to compile Perl code into machine instructions? There is no such tool. While Perl is compiled, it's compiled into high-level opcodes which require an interpreter to evaluate.

I want to encrypt my powershell script using a key [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I don't want to show my code so i want to encrypt the script which is difficult to decrypt.
If possible i want to run my encrypted script through power shell script.
I use PS2EXE to pack scripts as exe's. here is the link to the code link.
The code needs to be updated to account for newer version of powershell. Where the script checks for PSVerion.Major for version 4 change the -eq to -gt.
It can be a little tricky to use at first but the code is solid minus the update listed above.

How to execute an exe using Powershell? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have create an Windows Application in .net. I need to execute the exe generated by the application using powershell.
I would usually use the call operator (&):
$args = #('arg1', 'arg2', 'arg3')
& app.exe $args
A complete list of your available options are detailed here.

Writing to a Wiki [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I need to write a script that writes (appends) data to an internal wiki that isn't public (needs username and password but unencrypted, http not https). The script can be a shell script, a Perl script, or even a Java application (last resort). Any help would be appreciated. Let me know if any additional information is needed.
Right now, I'm only able to read from the wiki using LWP Perl library using the getprint($url) function.
Thanks
If it's truly MediaWiki, then just use MediaWiki::API.

Can someone help me figure out this class from documentation? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have no experience with sockets and I need to implement a process that notifies a user interface of inputs from another process that takes his values from stdin.
This is the class' documentation, what should the socket parameter be? It's just an int, is it a handle?
I was told it doesn't play nice with boost.asio.
Can you guys help me write a command prompt program that accepts an int from stdin and sends it to my UI? I just need the sending/receiving code.
It looks like it's expecting to receive the socket handle (int). I suggest you get to know winsock.
Also, googling for the above class + example yields some good results.