I am creating a web app in Android using PhoneGap.
While installing node.js,*the installation gets failed showing me user installations are disabled via policy on the machine*.
How can i resolve it ?
I tried #PeacefulWarrior solution mentioned above but it did not work for me on Windows 7 machine.
So I tried changing this setting from registry, and it worked.
Go to key HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer
Change the DisableUserInstalls value to 0.
Hi follow below steps
From the Start menu, click Run…
In the Run… command dialog, enter gpedit.msc
In the Group Policy Editor, select Computer Configuration > Administrative Templates > Windows Components > Windows Installer
In the Extended Properties pane, double-click Prohibit User Installs
Click Disabled
Click OK and close the Group Policy Editor
Run the installer again..
Related
settings is not opening in windows 10 after updating window 10 2004.
I updated my window 10 operating system but after update settings and it's related app is not opening.
FIX: Settings App Not Working In Windows 10
1. Open administrative Windows PowerShell. For this, simply right click Start Button or press W8K + X keys and select Windows PowerShell (Admin). You can also search for Windows PowerShell using Cortana and right click the same from results and select Run as administrator.
Next, in the PowerShell window, type/paste following cmdlet and press Enter key.
Get-AppXPackage -AllUsers -Name windows.immersivecontrolpanel | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml” -Verbose}
3.Let the command complete. Close Windows PowerShell and reboot the machine. After restarting your system, see if you can launch the Settings app now.
hope this method is work properly. If this method is not working please comment either you get proper solution then my request to you please submit your answer it might be help to other people who facing this issue.
i just installed new Windows 10 version (1703) and now i'm not able to connect any Windows CE device because Windows Mobile Device center 6.1 doesn't run.
I tried to reinstall it but there is no way, the install process stops.
Do i have to downgrade to a previous version of Windows?
Is there a workaround for this situation?
Thanks for your advices
regards
UPDATE: Some good suggestions which seem to work are now at this web page.
https://social.technet.microsoft.com/Forums/office/en-US/9cab3e8e-6cc4-48e4-8ed9-d595bc83f04b/windows-mobile-device-centre
PREVIOUS: I am able to get Windows Mobile Device Center (WMDC) to install, but not fully run. Installing required manually enabling the .NET Framework 3.5 similar to as described at the following web page.
https://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_install/how-to-instal-net-framework-35-on-windows-10/450b3ba6-4d19-45ae-840e-78519f36d7a4
After install, you must right click on Start, and then click on Computer Management > Services & Applications > Services. Scroll down to right-click on "Windows Mobile-2003-based device connectivity" to select Properties > Log On. Switch to "Local System account" with checking "Allow service to interact with desktop" then click OK.
On the handheld, tap on Start > Settings > Connections > USB to PC icon, uncheck the “Enable Advanced Network Functionality” checkbox, tap OK, and then connect the cable.
WMDC never shows connected, but ActiveSync on the handheld does, and you can at least open File Explorer on your PC to “browse the contents of the remote device” for transferring files. I am not sure how much this limits RAPI functions.
These Services settings changes must also be re-applied every time you Restart your PC. So this is obviously not a final solution.
I had the same problem.
I just did the following because I had 3.5 net framework :
Click right click on Start, and then click on Computer Management > Services & Applications > Services. Scroll down to right-click on "Windows Mobile-2003-based device connectivity" to select Properties > Log On. Switch to "Local System account" with checking "Allow service to interact with desktop" then click OK.
Restart my computer and it actually works again.
Thanks for sharing!
Try this
Open the command line as an administrator and run these two commands:
REG ADD HKLM\SYSTEM\CurrentControlSet\Services\RapiMgr /v SvcHostSplitDisable /t REG_DWORD /d 1 /f
REG ADD HKLM\SYSTEM\CurrentControlSet\Services\WcesComm /v SvcHostSplitDisable /t REG_DWORD /d 1 /f
After that, reboot your PC/laptop and the Windows Mobile device center should work again.
Follow these steps
Go To Services
Find Windows Mobile-2003-based device connectivity (Something like that)
Select Properties
Log On
Log On As
Select: Local System Account
Go back to General Tab
Select Startup Type: Manual
Click Start
Click Ok
Support Note, 2 June 2017
This worked for me, although not quite perfectly. When I disconnect my device the Device Center should stay up and show Disconnected, but instead it shuts down.
Just in case this helps someone.
Trying to connect VS2008 to WM6.1 device for a legacy project. I have been successful connecting to a WinCE device with just the registry update.
I made the changes as above, the registry updates, services logon to local and interact with desktop. Still couldn't get it to work.
Finally, I disabled the AVG advanced firewall and left the Windows firewall settings as they were and it worked. The firewall is set up so that any apps requiring access through them should cause popups but they didn't.
Can't see anyway to customize the AVG advanced firewall so will leave it off, at least while developing.
Thanks for everyone's help.
I'm using VS2012 & InstallShield2013 to generate installer file.
Some of the installed user couldn't run this application on WIn 7 OS. But they can get into the installed directory
and right click 'Run as an Administrator' it works.
The icon on the desktop, when i right right click there is no option like 'Run as an Administrator'.
I checked in the InstallShield directory C:\Program Files\InstallShield\2013LE\Support\
There are three files:
SetupExe.Admin.manifest,
SetupExe.Highest.manifest,
SetupExe.Invoker.manifest
So I followed this article : http://helpnet.flexerasoftware.com/installshield20helplib/Content/helplibrary/SpecifyingRequiredExecution.htm
and selected Required Execution Level 'Invoker' and Include MSI Engine:yes in the 'Release Setup /Single Image'
How can i enable the option to right click 'Run as an Administrator'?
It's important for me to fix this problem, for the users of Win 7 32/64 & Win Vista.
I'm totally confused about these files. Please help me.
The settings you reference in InstallShield will not affect how your application itself runs; instead they only change the privileges setup.exe requires when launched.
As for your application, there are a number of potential moving pieces that can affect whether the "Run as administrator" option shows up in the context menu in Explorer:
If the exe referenced by the shortcut has a manifest that requires administrative access, it will always run elevated, and the Run as administrator option will not appear
If the exe referenced is detected as an installer, Windows may choose to act as though it has a manifest requiring administrative access, and thus the Run as administrator option may not appear
If the Program Compatability Assistant (PCA) has decided the program needs administrative access, ditto
If the shortcut's compatibility settings have been modified to select "Run this program as an administrator", ditto
If UAC is disabled, Explorer may choose not to show Run as administrator
Some of these scenarios may persist across uninstallation and reinstallation; Windows can be very aggressive in its attempts to improve the end-user experience. However in all these cases, the end result is that your application would launch as an administrator.
If you always require administrative access in your application, you are strongly advised to implement the first of these: embed a manifest that includes the requiresAdministrator setting. This is equivalent to what the settings you reference change for setup.exe, but must be done in your application's executable.
I just got Windows Server 2012 Essentials installed and I would like to set up my dev web projects in IIS on the server. But I can't seem to find how to get to it? When I remote to the machine with my admin account all I seem to have access to is the dashboard.
Can anyone tell me what to do?
Essentials comes with IIS preinstalled, so unless you uninstalled it for some reason, its there already.
I'm assuming you want to get to the IIS 8 admin tool.
In order to get there
press the start button (on your keyboard)
click on the Administrative Tools tile
From there scroll down to IIS Manager and double click
OR
Hold down the windows key and press the R key (win+r)
then type in inetmgr
Apparently is not that simple on ws2012 as I thought, please try following this guide:
http://www.iis.net/learn/get-started/whats-new-in-iis-8/installing-iis-8-on-windows-server-2012
I don't think it's whether he has it installed or not, it's that they changed how you GET to it. IIS manager USED to be accessible from Server Manager, but it is no longer so. In 2008 (and earlier, but I don't have a box readily available) from Server Manager, expand Roles, then Web Server. If you click "web Server" You see a "dashboard", displaying events, Services, Best Practices, Etc. WITHIN that, you can click Internet Information Services (IIS) Manager, and see the sites, and manage and configure the sites on the machine.
In 2012, you can ONLY see that dashboard information, events, service status, best practice, etc. There's no way to navigate into IIS and manage the sites and applications. Up in the top-right corner, the menu "Tools" (Between "Manage" and "View") contains IIS Manager.
I'd LOOOOOVE to see a transcript of the design session where this change was suggested. Mostly just to get the attendance, and then hunt them all down.
Make sure that the IIS Management Console is enabled through via Control Panel -> Programs and Features. From Server Manager, click Add roles and features and follow the prompts.
You can find the inetmgr.exe at the below location:
C:\Windows\System32\inetsrv
Or you can run it from the run window
Win + R -> inetmgr -> Enter
I am trying to create a Local IIS Website using ASP.NET.
When I click on New -----> Website and select the type as HTTP and from the dialog box if I select the option as LOCAL IIS WEBSITE I am getting a message as "IIS not installed on this computer"
When I checked in the Control Panel---->Add or remove programs ---->Add or remove windows components. The Option Internet Information Service is already checked marked.
But when I click on the Control Panel ---> Administrative Tools, I dont find the option as Internet Information Service.
I also have the root directory as C:\Inetpub\WWWRoot.
And when I give the following command in the VS command Prompt
aspnet_regiis.exe -i
It is giving the message as finished installing ASP.NET
Can any one help me in identifying whether IIS is installed in my system or not?
Please help me out!
go to Start->Run type inetmgr and press OK. If you get an IIS configuration screen. It is installed, otherwise it isn't.
You can also check ControlPanel->Add Remove Programs, Click Add Remove Windows Components and look for IIS in the list of installed components.
EDIT
To Reinstall IIS.
Control Panel -> Add Remove Programs -> Click Add Remove Windows Components
Uncheck IIS box
Click next and follow prompts to UnInstall IIS.
Insert your windows disc into the appropriate drive.
Control Panel -> Add Remove Programs -> Click Add Remove Windows Components
Check IIS box
Click next and follow prompts to Install IIS.
For Windows 7:
Control Panel > Programs > Programs and Features > Turn Windows Features On or Off > to turn on IIS click on Check box.
Check
Control Panel --> Administrative Tools --> Services --> IIS Admin
For reinstalling
How to remove and reinstall IIS 5.0, 5.1 and 6.0
In the menu, go to RUN > services.msc and hit enter to get the services window and check for the IIS ADMIN service. If it is not present, then reinstall IIS using your windows CD.
The quickest way to check is just to write "inetmgr" at run (By pressing Win + R) as a command, if a manager window is appeared then it's installed otherwise it isn't.
A lot of answers here describe how to manually check if IIS is installed.
One (of many) programmatic ways is to check if the file
C:\Windows\System32\inetsrv\w3wp.exe
exists, and maybe has a certain minimum version (such as 10.0.0.0 for IIS version 10).
IIS can be installed programmatically using DISM. You can also use DISM to check if IIS is installed, which may be "more correct", but is also more difficult to do than just checking for a file.
WARNING: If possible, do not hard-code the path C:\Windows\System32, especially not within a 32-bit process or installer, as it can be virtualized and mapped to C:\Windows\SysWOW64, which is NOT where IIS is installed (assuming a 64-bit OS). Depending on where you are implementing your check (installer prerequisites, PowerShell, native code, etc.), there are different ways to explicitly access the 64-bit/native system folder.
Background: w3wp.exe is the worker process image of IIS, so if IIS is installed with minimal features, then this file can be expected to exist.
As for version numbers, you can expect the following minimum versions of IIS to be installed in (source):
IIS 10 (>= 10.0.0.0) in Windows Server 2016 or higher and Windows 10 or higher
IIS 8.5 (>= 8.5.0.0) in Windows Server 2012 R2 or higher and Windows 8.1 or higher
http://localhost:80 (specify port configured)
OR
http://localhost (default port)
type above line in your browser you realize IIS installed or not
I simple gave below in all my browsers. I got image IIS7
http://localhost/
Refer this a step by step approach:
http://www.codeproject.com/Tips/365704/Install-IIS-on-Windows
For many users you have to enable the windows feature on then check IIS and then go with RUN followed by searching for inetmgr.
I needed to do this on a server over the CLI, and was able to do so in using powershell wit the following command:
Get-ItemProperty -Path registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\InetStp\ | Select-Object