ftmd.over-blog.com/
27 Mars 2021
How to get install Parameters for any '.exe'.Open File ExplorerBrowse to your exe copy cmd.exe from C: Windows System32, paste to the same directory as your. A: Yes, you can download Lightshot from Mac AppStore. Q: What image formats do you support? A: At the moment they are.png,.bmp, and.jpg. Q: I have a problem using Lightshot. How can I have it solved? A: Please make sure you are using the latest build, and if its still there contact us. Q: I'd like to share my feedback about Lightshot. Step 5 – Execute the silent installation. The folder looks like: Google chrome silent install. Just right-click on install.cmd and run as administrator. After a few seconds, the install will be finished. So this is the complete package ready to be deployed over the network. Download the latest stable release Latest Windows release version: Greenshot-RELEASE-1.2.10.6 09 Aug 2017. Install lightshot in your most advanced Mac OS X operating system. Capture screen images and share them via Facebook and Twitter with your Macintosh. Mac hotkey is ⇧⌘ 9. Ubuntu Lightshot Application. We don't have a Lightshot application designed specifically for Linux yet. However you can still run it using Wine.
One of the things programmers hate most is probably setup a computer. Because the programmer's computer environment configuration is very different from normal people. In general, it takes several hours to manually install a new development machine. Let this process automating, after all, the essence of programming is to let complex things simplify, find a way to be lazy!
In fact, automatic installation and configuration of Windows is nothing new, as early as more than 10 years ago that the folk in computer stores used packaging image to achieve a one-click installation system and software. There are many ways to do this, such as editing Windows installation image through Microsoft or a third-party tool, adding automatic answer files, and finally installing common software with silent parameters, as well as a lazier Ghost images, and so on. More than 10 years ago, I was passionate about packaging windows, scripting and installing software also.
The method I introduced today is different from what it was more than 10 years ago, comparing to 10 years ago, now we must face some new problems:
In response to these realities, I chose to use PowerShell and Choco to design a new automatic setup script. PowerShell is Responsible for configuring Windows while Choco can automatically download the latest software installation package from the Internet and install it silently. This way, you don't have to integrate the software installation package into the Windows image.
In my own case, I am an ASP.NET Programmers, but also do some UWP development. So, for me, the environmental requirements are:
Let's see how PowerShell + Choco automate these tasks. The code for my entire setup script is open source, and there is a GitHub link in the end of this article, so this article only describes the key steps and code. For full script, you can see GitHub while free to modify and use. I welcome everyone to participate in the contribution, together we can complete a script for the benefit of a variety of programmers.
Rename Computer
The first step I like to rename the computer for easier management. In PowerShell, you can use the Rename-Computer command to do this.
To get the user input value, use command Read-Host. For output text, use Write-Host. To assign a value to a variable, use =.
The PowerShell code that requires the user to enter the computer name and rename it is as follows:
Of course, this step requires restarting the computer to take effect, we will do it later. Nch switch plus 6 5 0 6.
Disable Auto Sleep
We don't want the computer to go to sleep in the middle of the automatic setup process. So we need to disable auto sleep when the AC power is plugin.
Use PowerCfg command to set the screen timeout to 20 minutes, and disable auto sleep in AC power.
Desktop Icons
A newly installed Windows 10 machine does not have 'This PC' icon by default on the desktop. However there is a short cut icon for Microsoft Edge, the browser which its only purpose is to download Chrome, and it is becoming Chromium anyway. So we don't need it. Lets take out Edge icon and add 'This PC' to our desktop.
To add 'This PC' icon, we just need to modify the Registry.
Removing Edge short cut is very simple, just delete the file directly. The way to use environment variables in PowerShell is to use $env keywords.
The current user's environment variable is userprofile, Edge is on the desktop.

Install IIS
IIS is used to maintain some old ASP.NET projects.
The command for enabling Windows features in PowerShell is Enable-WindowsOptionalFeature, with '-All' parameter, it can install dependencies automatically.
By the way, DISM command can also do this task.
Enable Windows 10 Developer Mode
The developer mode on Windows 10 is for UWP development. To enable it, just edit Registry.
Enable Remote Desktop
Modify Registry and enable firewall.
Install Choco for Windows
Chocolatey is the tool we are about to use for automatically installing applications. It is just like apt/yum on Linux. We will use the official script to install:
Restart Windows
We changed the computer name in the first step, it requires reboot of the system. We can let the user to trigger the reboot by asking the user to press enter key. In PowerShell, we use Restart-Computer to reboot the system. You can also do it with shutdown -r -t 0
Self Elevate
As you may have discovered, the steps above are almost all requiring administrator privileges to be performed. We can run PowerShell as administrator manually, but it is more convenient to run under normal permissions and elevate itself to administrator permissions. Put this in the header of the script file:
In this way, the script detects whether it currently has administrative permissions, and if not, a UAC will pop up to request an administrator right to PowerShell and continue running the current script. Psequel.
Use Choco to Automatically Install Applications
After restart Windows, we can use choco Call of duty jogos. command to install applications under PowerShell or CMD with Administrator previlege. I choose CMD this time.
There are plenty of applications in chocolatey gallery. Many of them are developer tools. You can check online: https://chocolatey.org/packages
Install command is: choco install [packagename] -y, which the '-y' means automatically respond 'yes' to any confirm message. This is how we can install applications unattended.
So, the batch script to install applications is like this:
I have included the following applications in my script:
Delete Pre-Installed UWP Apps
The newly installed Windows 10 will include a few UWP applications we don't want. We can also delete them in PowerShell.
First, we need to find the UWP applications' package name, run Get-AppxPackage command, it will return a long list like this:
To delete an UWP application, the official way is to use PackageFullNameto delete it. For example, Bing News:
However, this can make problem. If Windows 10 updates this application in background, the version number will change, which will make your script useless. So I use another trick to delete the UWP appliction by name instead of full name.
We have a lot of UWP to delete, and the programmer's thinking is, of course, writing a loop, not copy of the command everywhere. The way you do loops in PowerShell is very similar to C #, using foreach syntax. Caesars palace classic room. In this example, I put the UWP name I want to delete in an array of strings, and then use loop to remove them.
Now, we are finished with our automated setup on a Windows 10 machine!
The GitHub repository for my scripts is here: https://github.com/EdiWang/EnvSetup/
Hi,
are there any plans to make it possible to install NoMachine on Windows without administrator rights? At least the client part.
At many companies you don't have admin rights on some machines and that makes it impossible to use NX 4.0 as a client.
Thanks
Please install the enterprise version of the client ;).
Until not long ago it was possible to select between client or server at setup time. We decided to skip this because we want NoMachine to attract a much wider audience than the traditional Linux remote desktop user. Most people are not used to the fact you can separate a program in 'client' and 'server'. When people install Skype, they expect to be able to both place and receive calls with a single program. Not always things are obvious. Recently I've seen a review at Download.com where a user gave NoMachine 1 star (screwing our score forever 😉 ) because we didn't explain better that he had to install NoMachine on TWO computers to let these computers communicate each other. Of course the user was right.
There are number of things we plan to work on:
– Make easier to shutdown the server forever in one click.
We made the mock-ups already, albeit I don't know the status of development. This would make most users interested only in the client happy.
– Make possible to install only the client.
Maybe there is a command line options already (there are to make 'silent' and 'very silent' automated installations). If there is not, expect this option to become available soon.
– Make possible to install the client without admin privileges.
This is easy too. The only thing for which the client needs admin rights is to install some device redirection drivers. Simlab composer 9 2 23 julio. No drivers, no redirection, but no loss of functionality beyond that.
– Make possible to install the server without admin privileges.
This is a bit more complicated because the server was born as an 'enterprise' solution, so it is a bit overloaded compared to the needs of a single-user program. The idea is to build a single-user server in the player. In the 4 we made huge steps to streamline everything and now this goal is not too far away.
– Create an install-less client (and server).
The idea is to make easy creating a USB image including players for all the supported platforms, so that people can run the client from there. I don't know where we are, but AFAIR I have seen some prototypes working. Making a 'portable client' is one of the most requested features.
Yes t-dome,
the NoMachine Enterprise client is free.
You can download it from the ‘NoMachine Enterprise Client' section here:
