HERE THE CODE FOR YOU--------------------------------------------------------------------------------------->Windows 8 (core): FB4WR-32NVD-4RW79-XQFWH-CYQG3
Windows 8 Pro: XKY4K-2NRWR-8F6P2-448RF-CRYQH
Windows 8 Pro with Media Center: RR3BN-3YY9P-9D7FC-7J4YF-QGJXW
Windows 8.1 (core): 334NH-RXG76-64THK-C7CKG-D3VPT
Windows 8.1 Pro: XHQ8N-C3MCJ-RQXB6-WCHYG-C9WKB
Windows 8.1 Pro with Media Center: GBFNG-2X3TC-8R27F-RMKYB-JK7QT
Windows 8.1 Enterprise: MNDGV-M6PKV-DV4DR-CYY8X-2YRXH "OR" FHQNR-XYXYC-8PMHT-TV4PH-DRQ3H
Showing posts with label Windows and IIS. Show all posts
Showing posts with label Windows and IIS. Show all posts
Wednesday, April 22, 2015
Wednesday, January 21, 2015
windows batch file using echo current directory or file
@echo off
echo ------------------------------
echo %cd%
:: folder
echo %~dp0%0
:: folder\ + filename.bat
echo %~f0
:: filefullname.bat
echo %~dpn0
:: filefullname
echo %~n0
:: filename
echo ------------------------------
echo ------------------------------
echo %cd%
:: folder
echo %~dp0%0
:: folder\ + filename.bat
echo %~f0
:: filefullname.bat
echo %~dpn0
:: filefullname
echo %~n0
:: filename
echo ------------------------------
Tuesday, November 25, 2014
how to build and deploy apk file into android emulator in netbeans
android project install.bat file
@echo off
echo.
echo Current android project folder Build and Install...
echo by %0
echo.
echo -------------------------------------------------------------------Building
echo.
call "C:\Program Files\NetBeans 8.0.2\extide\ant\bin\ant" -f "%cd%" clean debug
echo.
echo -----------------------------------------------------------------Installing
echo.
adb -s emulator-5554 install -r bin\%~n0.apk
echo.
@echo off
echo.
echo Current android project folder Build and Install...
echo by %0
echo.
echo -------------------------------------------------------------------Building
echo.
call "C:\Program Files\NetBeans 8.0.2\extide\ant\bin\ant" -f "%cd%" clean debug
echo.
echo -----------------------------------------------------------------Installing
echo.
adb -s emulator-5554 install -r bin\%~n0.apk
echo.
Friday, September 13, 2013
cannot-install-4-7-4-incompatible-version-of-xamarin-shell-detected
about incompatible version software fixer
Spent couple of hours but got it to work as follows: 1- Download a program called Orca (http://www.softpedia.com/get/Authoring-tools/Setup-creators/Orca.shtml) 2- right click on mono-androidxxx.msi 3- choose edit with orca 4- Go to InstallUISequence 5- Search for the action name "IncompatibleShellDlg" and edit its condition from "INCOMPATIBLE_SHELL=1" to "INCOMPATIBLE_SHELL=0" 6- SAVE 7- Good Luck. Enjoy!
Spent couple of hours but got it to work as follows: 1- Download a program called Orca (http://www.softpedia.com/get/Authoring-tools/Setup-creators/Orca.shtml) 2- right click on mono-androidxxx.msi 3- choose edit with orca 4- Go to InstallUISequence 5- Search for the action name "IncompatibleShellDlg" and edit its condition from "INCOMPATIBLE_SHELL=1" to "INCOMPATIBLE_SHELL=0" 6- SAVE 7- Good Luck. Enjoy!
Saturday, January 12, 2013
How to use Disk Management
How to use Disk Management
To start Disk Management:- Log on as administrator or as a member of the Administrators group.
- Click Start, click Run, type compmgmt.msc, and then click OK.
- In the console tree, click Disk Management. The Disk Management window appears. Your disks and volumes appear in a graphical view and list view. To customize how you view your disks and volumes in the upper and lower panes of the window, point to Top or Bottom on the View menu, and then click the view that you want to use.
Tuesday, July 10, 2012
framework 2.0 on x64, 32-bit on 64-bit windows
Thanks for that link Ravi. That is correct. In
the future we should change the solutions so that they come out the box
as 32bit only.
Another thing you can do is set your system so that it uses the 32bit CLR by-default. You can do this by calling:
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\Ldr64.exe setwow
If you're doing this from a Vista box, make sure you run this from an Administrator command prompt.
Thanks,
To enable IIS 6.0 to run 32-bit applications on 64-bit Windows
Another thing you can do is set your system so that it uses the 32bit CLR by-default. You can do this by calling:
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\Ldr64.exe setwow
If you're doing this from a Vista box, make sure you run this from an Administrator command prompt.
Thanks,
To enable IIS 6.0 to run 32-bit applications on 64-bit Windows
-
Open a command prompt and navigate to the %systemdrive%\Inetpub\AdminScripts directory.
-
Type the following command:
cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 “true”
-
Press ENTER.
Wednesday, April 25, 2012
select * from Win32_DiskDrive
Win32_DiskDrive | select caption,
deviceid,index, interfacetype, manufacturer, medialoaded, mediatype,
model, name, partitions, pnpdeviceid, scsibus, scsilogicalunit,
scsiport, scsitargetid, sectorspertrack, size, status, totalcylinders,
totalheads, totalsectors, totaltracks, trackspercylinder
Monday, October 17, 2011
Asp.NET web project publish using IIS Add Ftp Publishing
Энэ удаад asp.net web site -г хэрхэн Internet Information Service д бүртгүүлэх болон хийсэн вебээ IIS ийн Ftp Publish ашиглан кодоо хуулах эсвэл байршуулах тухай.
1. Install Visual Studio 2010
2. Install IIS from Windows Features in Control Panel
3. shell that "C:\Windows\Microsoft.Net\Framework\v4.0.30319\aspnet_regiis.exe -i" on windows command prompt. It is register for required Framework libraries into IIS
4. Create ASP.NET Project
5. add web site ( may be physical path as C\:MyAspNetProject1 ) on IIS
6. Click mouse right button, Add FTP publishing into your web site
example: computer/username -> 192.168.1.107/boroo
7. Publish now your web project from Visual Studio
example: User name: server or boroo
Your visual studio status will be Publish started.......
1. Install Visual Studio 2010
2. Install IIS from Windows Features in Control Panel
3. shell that "C:\Windows\Microsoft.Net\Framework\v4.0.30319\aspnet_regiis.exe -i" on windows command prompt. It is register for required Framework libraries into IIS
4. Create ASP.NET Project
5. add web site ( may be physical path as C\:MyAspNetProject1 ) on IIS
6. Click mouse right button, Add FTP publishing into your web site
example: computer/username -> 192.168.1.107/boroo
7. Publish now your web project from Visual Studio
example: User name: server or boroo
Your visual studio status will be Publish started.......
Tuesday, August 2, 2011
Re-Register all DLL’s to fix “No such interface supported” error in windows 7 after installing IE7 Standalone
Re-Register all DLL’s to fix “No such interface supported” error in windows 7 after installing IE7 Standalone
windows 7 дээр IE7 суулгаж веб тэст хийх гэсэн чинь Explorer алдаа заасан. Тэгээд нетээс хайж энийг оллоо. гол нь c:\regdll.bat файлыг нээгээд c:\ -г regsvr32.exe /s c:\ -ээр солиод тэгээд
$patchcache$ and WinSXS бичиглэл орсон мөрүүдийг устгаад тэгээд regdll.bat aa ажиллуулахад алдаа нь засагдаж байна. Энэ их хэрэгтэй зүйл болхоор нь тавилаа
Re-Register all DLL’s to fix “No such interface supported” error in windows 7 after installing IE7 Standalone
Disclaimer: All care No Responsibility. you follow the instructions provided at your own risk. I take no responsibility any damage you may cause. Please read the article in full before starting
To test some website stuff I tried to install IE7 on my windows 7 machine. now I cant run explorer for browsing files or accessing control panel and the like. I found an old guide for re-registering all your dll’s that I thought was quite nifty so I thought I woukld re-share it with you. (up-dated from windows 98)
The original instructions basically get you to dump all DLL files into notepad, then do a find and replace to regsvr32 them all. if you do it from c:\ like it suggests, you might get more than you need. including dll files from the recycle bin.
this fixed my problem. and I think its worth trying this way before doing it for every file on your computer.
I am going to assume your windows installation is on C:\ and in C:\ windows
1. open command promt as an administrator
2. type
CD C:\WINDOWS
(and C:\ if you werent on that drive by default)
3. type Dir *.dll /s /b > c:\regdll.bat
This will search for all dll files within c:\windows (including /subdirectories) and output them (in /bare format) into a text file on the c:\ called regdll.bat
you cant run it just yet because its just a list of files, we need to change it so that its actually got a command. open the file in your prefered text editor (notepad) and do a replace on c:\ , replacing it with Regsvr32.exe /s c:\
This is what your file should look like.
Now. before running off and trying to run the file. I highly recommend you scrolldown until you find $patchcache$ and WinSXS folders and deleting all the files in there. this will excruciatingly increase the time to do this and probably stuff lots up.
Once this is done. Save the file and run it. If you still have your command prompt as administrator open, just type c:\regdll.bat
This will register all dll files in c:\windows and subdirectories. This will take some time, and potentially, also register files that would not normally be registered by default, (like files in $patchcache$ and other windows directories). It worked for me and I dont need to do a reinstall
You will get errors. just click ok.
Wednesday, April 27, 2011
IIS and framework install on windows 7 asp.net web
start - > program files -> control panel - > programs - > windows features -> IIS install хийнэ
дараа нь ASP.NET framework 4.0 install хий тэгээд.............
cmd run as administrator нээгээд энэ коммандыг бич
C:\Windows\Microsoft.NET\Framework\v4.0.30319>aspnet_regiis.exe -i
Start installing ASP.NET (4.0.30319).
........
Finished installing ASP.NET (4.0.30319).
C:\Windows\Microsoft.NET\Framework\v4.0.30319>exit
олон дахин хийвэл бас жаахан асуудал үүсдэг учраас яг дарааллаар нь ганц удаа хийгээрэй. Болохгүй бол framework 4.0 oo мөн IIS ээ uninstall хийж байгаад дахиад эхнээс нь үзээрэй.
http://localhost/ -г магадгүй http://computername or ip/ болгох хэрэгтэй байж мэднэ
Хэрэв framework 4 Razor ашиглаж байгаа бол өөрийн ASP net host доо
дараа нь ASP.NET framework 4.0 install хий тэгээд.............
cmd run as administrator нээгээд энэ коммандыг бич
C:\Windows\Microsoft.NET\Framework\v4.0.30319>aspnet_regiis.exe -i
Start installing ASP.NET (4.0.30319).
........
Finished installing ASP.NET (4.0.30319).
C:\Windows\Microsoft.NET\Framework\v4.0.30319>exit
олон дахин хийвэл бас жаахан асуудал үүсдэг учраас яг дарааллаар нь ганц удаа хийгээрэй. Болохгүй бол framework 4.0 oo мөн IIS ээ uninstall хийж байгаад дахиад эхнээс нь үзээрэй.
http://localhost/ -г магадгүй http://computername or ip/ болгох хэрэгтэй байж мэднэ
Хэрэв framework 4 Razor ашиглаж байгаа бол өөрийн ASP net host доо
Microsoft.CSharp.dll - reference
Microsoft.Web.Infrastructure.dll and .xml - copy
System.Web.Helpers.dll and .xml - reference
System.Web.Razor.dll and .xml - copy
System.Web.Routing.dll - reference
System.Web.WebPages.Deployment.dll and .xml - copy
System.Web.WebPages.dll - reference
System.Web.WebPages.Razor.dll and .xml - copy
файлуудыг хуулж тавих эсвэл Project reference дээ нэмэх хэрэгтэй
Subscribe to:
Posts (Atom)



