Quantcast
Channel: Windows 8.1 Installation, Setup, and Deployment forum
Viewing all 5362 articles
Browse latest View live

Issue in hosting nodejs website in IIS8 on windows 8

0
0

Hi,

I have hosted express nodejs website in IIS8 on wondows 8. But i am getting issue,

app.js script content:

var express = require('express');
var expApp = express();
var ipaddress = process.env.OPENSHIFT_NODEJS_IP || "127.0.0.1";
var port = process.env.OPENSHIFT_NODEJS_PORT || 5100;
var http = require('http');

http.createServer(expApp).listen(port, ipaddress, function () {
    console.log('Express app started ip:' + ipaddress + ':' + port);
});

expApp.use(function (req, res, next) {
    console.log('Time:', Date.now());
    next();
});

expApp.get('/', function (req, res) {
    res.send('Welcome!');
});

expApp.get('/index', function (req, res) {
    res.send('Welcome!!!!!!');
});

web.config content:

<configuration>
  <system.webServer>
    <defaultDocument enabled="true">
      <files>
        <add value="app.js" />
      </files>
    </defaultDocument>
    <handlers>
      <clear />
      <add name="iisnode" path="app.js" verb="*" modules="iisnode"/>
    </handlers>
    <security>
      <requestFiltering>
        <hiddenSegments>
          <add segment="node_modules" />
        </hiddenSegments>
      </requestFiltering>
    </security>
  </system.webServer>
</configuration>

Browsing Url: http://localhost:5100/

Error:

Application has thrown an uncaught exception and is terminated:
Error: listen EACCES 127.0.0.1:5100
    at Object.exports._errnoException (util.js:849:11)
    at exports._exceptionWithHostPort (util.js:872:20)
    at Server._listen2 (net.js:1218:19)
    at listen (net.js:1267:10)
    at net.js:1376:9
    at doNTCallback3 (node.js:441:9)
    at process._tickCallback (node.js:347:17)
    at Function.Module.runMain (module.js:477:11)
    at startup (node.js:118:18)
    at node.js:952:3

Please let me know how to resolve this issue.



How do I return to Windows 8.1 from Windows 10?

0
0
How do I uninstall windows 10and get back to my windows 8.1?

Windows Store doesn't let me upgrade to 8.1, says I am not administrator

0
0

Hello, I am trying to upgrade my Windows 8 to Windows 8.1 with Windows Store. But Store refuses to let me download, saying I do not have administrator rights. I am with an administrator account and a ms account login. But it still doesn't let me. I put UACs at minimum. I tried creating a new admin account, same problem. With the integrated account Administrator, which was desactivated, I can't access Store at all. I did all the updates, I ran a MS FixIt utility to checkproblems with Windows update, it fixed nothing.....

How can I upgrade to Windows8.1? Actually my question should be, how do I give myself the rights to do it?

I am really not happy of not having rights on my own machine.

Thank you for your help. I am really lost here :)

 

During deployment :windows installation cannot continue because a required driver could not be installed

0
0

During a deployment from wds i get the following error with windows 8.1 "windows installation cannot continue because a required driver could not be installed"

When doing shift+f10 i can check the NIC is working well (i did get a ip-adress from the dhcp-server).

Hardware : HP 8200 SFF.


Thx

windows 8 fails to boot.

0
0

hi

I am having trouble with normal booting my laptop. It is currently loaded with windows 8 64 bit. It started when i unplugged the power code .

During booting , it displays "starting Automatic Repair" and after a few seconds it goes blank. I have tried leaving it in this state for 4 hours but no change.

I have made a recover disk from a machine of the same specs and OS  ,it only shows the windows 8 logo and back to the blank screen. Its own one key recovery capability offers me the starting option then back to the blank screen.

please help.

Thanks.

Restoring Windows 7 from Windows 10 computer hangs.

0
0

hello,,i have the same issue a lot of others are having,,im adding extra to the win8.1 hangup.I tried win10 didn't like it and guess  what..i been trying to load my win 7 pro 64bit into a acer aspire ES1-512-C96S.I been getting hung up at the windows is copying files.point.then it stops and iget an error that some external device such as music player ect,needs to beremoved and start again.i downloaded the win8.1 exec pack and downloaded to a usb flash.i cant get the iso image to install.my question is..Can I download the 8.1 on a different harddrive or ssd and the hookup the hdd or  ssd to the laptop.will it work?i have changed the uei field to legacy and turnedoff  the secure boot.I am aware of the gpt,mbr.issue. Im also getting some resistance in partitioning the c: drive


Windows WIMBOOT with premade files SOLVED

0
0

Hello,

for a few weeks i was working on making a windows PE with all 5.1 updates and DISM ready... this is a very simplified way of wimbooting your devices

please download the following file(s)

https://onedrive.live.com/redir?resid=930D91D3418195D8!616&authkey=!AFB_ojTXRrpS9dk&ithint=file%2czip

Windows PE iso has the windows updates and winpe 5.1 already to go

RUN ADKSETUP.EXE and choose IMAGE DEPLOYMENT (DISM) option

PREPARING WINPE USB

1. Open Rufus bootable USB creator
2. select your usb drive (topbox)
3. next to make bootable click the choose ISO button
4. select WinPE5.1 Wimboot ready

PREPARING MAIN HDD/SSD/eMMC

1. bootup using winPE USB. when loaded you will only see a cmd/terminal window
1.5 the following are commands to type into the CMD box
2. DISKPART
3. list disk
4. select disk 0
5. clean
6. convert gpt
7. create partition efi size=100
8. format quick fs=fat32 label="system"
9. create partition msr size=128
10. create partition primary
11. shrink minimum=3000
12. format quick fs=ntfs label="windows"
13. assign letter=c
14. create partition primary
15. format quick fs=ntfs label="images"
16. assign letter=m
17. set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"
18. gpt attributes=0x8000000000000001
19. list volume
20. exit

your hdd is now partitioned for Wimboot

PREPARING THE DIRECTORIES ON THE VOLUMES

1. MD "M:\Windows Images\"
2. copy install.wim from the downloaded folder too M:\Windows Images\
3. MD C:\recycler\scratch
4. set wim_skip_wimboot_check=1
5. DISM /apply-image /imagefile:"M:\windows images\install.wim" /applydir:C: /index:1 /WIMBoot /Scratchdir:C:\recycler\scratch
6. C:\windows\system32\bcdboot c:\windows
7. MD M:\recovery\windowsRE
8. copy winre.wim from downloaded dir using xcopy
xcopy E:\winre.wim M:\recovery\windowsre\winre.wim /h
9. C:\windows\system32\reagentc /setREImage /path M:\recovery\windowsre /target C:\windows

FINISHED!!!! RESET YOUR PC 

http://windowswimboot.blogspot.com.au/2015/09/windows-81-wimboot-install-pack-solved.html

Hope this helps

Chris Coroner

Update Wimboot Installation

0
0

I am overseeing several small Win 8.1 Tablets. They used Wimboot to optimize their disks.

When they came out of the box, they had 5.24 GB (of 8.77GB) free. Updating Windows Defender dropped this down to 4.84GB.

The Primary partition says that it is a Boot, Page File, Crash Dump, Wim Boot, Primary Partition.

There is a 5.57 GB Recovery partition.

I can create a Recovery USB drive, but there is no option to remove the Recovery partition. Tech support says that that is where the Wimboot file is located and it can't be removed.

After applying major updates, it only had 2 GB free. No apps have been installed. I understand that while the original OS files were stored in the Wimboot partition, any updates to those files are store on the C: drive.

Is there way that I can apply the Windows updates to the Wimboot file and then reset the tablet to the factory configuration so that it will now have all the updates?

I can forsee a time in the near future when all the available disk space is taken up by Windows updates. The only alternative is to use the tablets without applying updates from Microsoft.

Alternatively, can I undo the Wimboot feature and combine the two partitions? I could remove Windows components to minimize the size of the OS and use my Recovery USB stick for system repairs.

Any ideas?


Windows Modules Installer Worker is making my computer hang

0
0
Windows Modules Installer Worker is making my computer hang, and it uses up 50-70% of my CPU. Does anyone know how I can fix this problem?

dell system issues

0
0

  hi...

after upgrading to windows 8.1

my dell inspiron N5050 won't shutdown whenever i click shutdown button.

please i need urgent solution

How do I return to Windows 8 from Windows 10?

0
0

Por motivos laborales he actualizado mi portátil a Windows 10, pero ha presentado ciertas inconveniencias y no lo deseo mas en mi computador, desearía regresar a Windows 8 con el cual obtuve una gran experiencia con Windows, deseo volver a tener Windows 8 en mi pc sin perder mis datos personales, sin perder todos mis archivos, deseo volver a tener Windows 8, ¿Es posible? y de ser así, ¿Cómo lo puedo hacer?

Translation:
Forbusiness reasonsI upgradedmy laptoptoWindows 10,but it has presentedsomeinconveniencesand do notwantmoreinmy computer, I wouldreturn toWindows 8with whichgotgreat experience withWindows, Iagain haveWindows8 on mypcwithout losingmy personal data,without losingall my files,I want toregainWindows8is it possible? and if so, how doI cando?

windows8.1

0
0
<?xml version="1.0" encoding="utf-8"?><rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0"><channel xml:base="https://social.technet.microsoft.com/Forums/en-US/w8itproinstall/thread/5921ccd8-c2b9-42d2-b72e-b0a1f01f219a?outputAs=rss"><title>windows8.1</title><description>windows 8.1 professinal windows automatically activat and&amp;nbsp;</description><copyright>© 2009 Microsoft Corporation. All rights reserved.</copyright><lastBuildDate>Wed, 21 Oct 2015 07:32:42 Z</lastBuildDate><a10:id>5921ccd8-c2b9-42d2-b72e-b0a1f01f219a</a10:id><a10:link href="https://social.technet.microsoft.com/Forums/en-US/5921ccd8-c2b9-42d2-b72e-b0a1f01f219a/windows81?forum=w8itproinstall" /><item><guid isPermaLink="true">https://social.technet.microsoft.com/Forums/en-US/5921ccd8-c2b9-42d2-b72e-b0a1f01f219a/windows81?forum=w8itproinstall#5921ccd8-c2b9-42d2-b72e-b0a1f01f219a</guid><link>https://social.technet.microsoft.com/Forums/en-US/5921ccd8-c2b9-42d2-b72e-b0a1f01f219a/windows81?forum=w8itproinstall#5921ccd8-c2b9-42d2-b72e-b0a1f01f219a</link><a10:author><a10:name>Emal Hamrah</a10:name><a10:uri>https://social.technet.microsoft.com:443/profile/emal%20hamrah/?type=forum</a10:uri></a10:author><title>windows8.1</title><description>windows 8.1 professinal windows automatically activat and&amp;nbsp;</description><pubDate>Wed, 21 Oct 2015 07:32:42 Z</pubDate><enclosure url="https://i1.social.s-msft.com/profile/u/avatar.jpg?displayname=emal+hamrah&amp;size=small" type="image/jpeg" length="1" /><a10:updated>2015-10-21T07:32:42Z</a10:updated></item></channel></rss>
 

windows8.1

0
0
windows 8.1 professinal windows automatically activat and 

ASUS TF600T tablet Windows 8.1 RT

0
0
When I turn on the tablet I get the error message : Your PC ran into a problem and needs to restart. We are just collecting some error info and then we will restart for you. Then it will go to Preparing Automatic repair.  Then it just keeps looping the same messages.. Nothing else.

Reinstall Windows 8.1

0
0
This PC had Windows 8.1 installed (new). I Installed Windows 10 on 10/19/2015. I want Windows 8.1 back? I need help?

how to apply gpo for users group

0
0
hi,
i want to apply a gpo for a group, but when i open mmc > add anap-in > Group policy object > Browse> users..
i can see only users, "administrators group" and "non administrators group".
i cant find groups ive created locally by myself..
thanks

OEM - Windows 8.1 Professional

0
0

Hi,

   In SOHO environment, can we install "OEM single license of Windows 8.1 Professional", on 1- Old OR New assembled PC, which isn't came with pre-installed/bundledwith any windows OS ? in any YES & NO case is there any legal document to support Ur Answer?

Windows Update Fails

0
0

Hi

Windows Update fails with the error below. I have tried the commands below without success.

Regards,

Michael

net stop wuauserv
reg Delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v SusClientId /f
reg Delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v SusClientIDValidation /f
rd %WINDIR%\SoftwareDistribution
net start wuauserv
wuauclt.exe /resetauthorization /detectnow

2015-10-29 09:28:09:272  380 1124 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 2633; does use network; is at background priority
2015-10-29 09:28:09:459  380 1124 WS WARNING: Nws Failure: errorCode=0x803d0013
2015-10-29 09:28:09:459  380 1124 WS WARNING: The body of the received message contained a fault.
2015-10-29 09:28:09:459  380 1124 WS WARNING: Soap fault info:
2015-10-29 09:28:09:459  380 1124 WS WARNING: reason: Fault occurred
2015-10-29 09:28:09:459  380 1124 WS WARNING: code: Client
2015-10-29 09:28:09:459  380 1124 WS WARNING: detail: <detail><ErrorCode>InvalidParameters</ErrorCode><Message>parameters.OtherCachedUpdateIDs</Message><ID>0377b0ea-e8ea-41e0-a0d0-6ed693cacc47</ID><Method>"</detail">http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/SyncUpdates"</Method></detail>
2015-10-29 09:28:09:459  380 1124 WS WARNING: Soap fault detail: errorCode='InvalidParameters', message='parameters.OtherCachedUpdateIDs', id='0377b0ea-e8ea-41e0-a0d0-6ed693cacc47', method='"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/SyncUpdates"'
2015-10-29 09:28:09:459  380 1124 WS FATAL: OnCallFailure failed with hr=0X80244007
2015-10-29 09:28:09:459  380 1124 PT WARNING: PTError: 0x80244007
2015-10-29 09:28:09:459  380 1124 PT WARNING: SyncUpdates_WithRecovery failed.: 0x80244007
2015-10-29 09:28:09:459  380 1124 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 2633) stopped; does use network; is at background priority
2015-10-29 09:28:09:459  380 1124 PT   + SyncUpdates round trips: 54
2015-10-29 09:28:09:459  380 1124 PT WARNING: Sync of Updates: 0x80244007
2015-10-29 09:28:09:459  380 1124 PT WARNING: SyncServerUpdatesInternal failed: 0x80244007
2015-10-29 09:28:09:459  380 1124 Agent   * WARNING: Failed to synchronize, error = 0x80244007
2015-10-29 09:28:09:459  380 1124 Agent   * WARNING: Exit code = 0x80244007
2015-10-29 09:28:09:459  380 1124 Agent *********
2015-10-29 09:28:09:459  380 1124 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdatesWuApp  Id = 37]
2015-10-29 09:28:09:459  380 1124 Agent *************
2015-10-29 09:28:09:459  380 1124 Agent WARNING: WU client failed Searching for update with error 0x80244007
2015-10-29 09:28:09:459  380 1124 IdleTmr WU operation (CSearchCall::Init ID 37, operation # 2541) stopped; does use network; is not at background priority
2015-10-29 09:28:09:459  380 1124 IdleTmr Decremented idle timer priority operation counter to 1
2015-10-29 09:28:09:459  380 19c0 AU >>##  RESUMED  ## AU: Search for updates [CallId = {C4B313BC-9EA2-414C-BD7D-508D8D1AC643} ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}]
2015-10-29 09:28:09:459  380 19c0 AU   # WARNING: Search callback failed, result = 0x80244007
2015-10-29 09:28:09:459  380 19c0 AU #########
2015-10-29 09:28:09:459  380 19c0 AU ##  END  ##  AU: Search for updates  [CallId = {C4B313BC-9EA2-414C-BD7D-508D8D1AC643} ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}]
2015-10-29 09:28:09:459  380 19c0 AU #############
2015-10-29 09:28:09:459  380 19c0 AU All AU searches complete.
2015-10-29 09:28:09:459  380 19c0 AU   # WARNING: Failed to find updates with error code 80244007
2015-10-29 09:28:09:459  380 19c0 AU AU setting next detection timeout to 2015-10-29 13:28:09
2015-10-29 09:28:09:459  380 19c0 AU Adding timer:
2015-10-29 09:28:09:459  380 19c0 AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2015-10-29 13:28:09, not idle-only, not network-only
2015-10-29 09:28:09:459  380 19c0 AU   # Publishing WNF Per user update count event Count: 29 SID {S-1-5-21-1377393817-2111133311-1600358205-500} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
2015-10-29 09:28:09:459  380 19c0 AU   # Publishing WNF Per user update count event Count: 0 SID {S-1-5-21-1377393817-2111133311-1600358205-1004} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
2015-10-29 09:28:09:459  380 19c0 AU Currently AUX is enabled - so not show any WU Upgrade notifications.

Can't delete extra "Healthy (Recovery Partition)"s and "Healthy (EFI System Partition)"

0
0

I have two "Healthy (Recovery Partition)"s and a "Healthy (EFI System Partition)" that were not there when I got my laptop and that I cannot delete. I have a Windows 8 laptop (recently updated to 8.1) and about a week ago I decided to dual boot "Ubuntu 13.04". I only gave it a small 18.55GB partition of my hard drive as I wanted to use Windows as my main OS and Ubuntu simply to make and Linux versions of games that I create. I noticed after doing so that it added a "Healthy (Recovery Partition)" to the beginning of the drive (the first one listed).

I could never get it to be added to the Windows boot loader correctly with EasyBCD and I had to keep going to the boot options to pick the GRUB2 and then Ubuntu. I really didn't want to keep doing this and I was having some problems with Ubuntu video drivers as well. I figured that I would just use a different computer for Ubuntu so I took it off of my laptop and formatted the partition it was on. It worked okay but there was still that first "Healthy (Recovery Partition)" that I couldn't delete but I just ignored it.

After updating to Windows 8.1, I thought that maybe the boot loader would work so I tried partitioning and installing Ubuntu again (I know, mistake) but it still didn't work and I could even get it load up correctly. So I finally gave up and have completely decided that I will never dual boot a Linux with Windows again as Linux has too many problems and complications for me. The only way I'm using Linux again is by itself on a computer (I think it's kind of nice to have both, but I'd take Windows over it any day). Anyway, I decided to delete it again.

When I went to delete it, I noticed that there were two more partitions listed that were not there before and I cannot delete them. I wouldn't mind leaving them there too much (as they only take up a small amount of space themselves though if I can I'd like to), but the second "Healthy (Recovery Partition)" is keeping me from increasing my Windows partition to fill up the 18.55GB left from the Ubuntu partition.

I cannot delete them and the only option it gives me is the "Help" option which does not really give me any info on this. All three of the partitions only give me the "Help" option and I cannot delete any of them and it's strange that they are all listed as "100% Free" for space. I'd like to just have the "(C:)" and "(D:)" partitions as drive C: is my Windows partition and D: is my real Recovery "Healthy (OEM Partition)" that was there when I got the laptop.

I'm not really even sure how that second "Healthy (Recovery Partition)" got there because it is in-between the Windows partition and where the "Ubuntu" partition was and it was there before I even formatted that partition. I'll put a screenshot of the "Windows Disk Management" so that you can see what is going on. It also started listing the "Healthy (OEM Partition)" twice, but I think that is because it contains both Windows 8 and Windows 8.1 if I am correct. Any advice on how to get rid of those extra partitions would be great.

DOWNLOADING WINDOWS 8 TO LAPTOP WITH EMBEDDED PRODUCT KEY

0
0

New to forums - pardon any etiquette lapses. I updraded my laptop to Win 10 yesterday, and today my hdd fried. Probably coincidence. Lenovo tells me to redownload Windows 8 Std 64 bit - which I plan to do then run from memory stick. Lenovo tells me the product key is embedded, so I wont need it - it will automatically work.... ( I'm not so confident )

But I can't find Windows 8 Std 64 bit download anywhere on Windows site. Pls point me there.

OK - I think I found it

http://www.microsoft.com/en-us/download/confirmation.aspx?id=37019

Viewing all 5362 articles
Browse latest View live




Latest Images