Not enough storage is available to process this command
If you recieve multiple storage alerts within the event log, the below procedure should resolve.
1. Click on Start > Run > regedit and click OK
2. Locate HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\
LanmanServer\Parameters
3. Locate IRPStackSize. If this value does not exist, right click on Parameters key and Click on New > Dword Value and type in IRPStackSize under the name.
5. The name of the value must be exactly the same as the one in step 3. (Case sensitive)
6. Right click on IRPStackSize and click on modify
7. Select decimal and enter a value higher than 15 (Maximum Value is 50 decimal)
8. Click Ok
9. Exit from registry editor and restart your computer
Showing posts with label website. Show all posts
Showing posts with label website. Show all posts
Monday, April 4, 2011
Thursday, January 28, 2010
Disable right mouse click script
--
--var message="Sorry,right click is Disabled!";
---function clickIE4(){
--if (event.button==2){
--alert(message);
--return false;
--}
---}
--function clickNS4(e){
--if (document.layers||document.getElementById&&!document.all){
--if (e.which==2||e.which==3){
---alert(message);
--return false;
--}
---}
--}
---if (document.layers){
---document.captureEvents(Event.MOUSEDOWN);
---document.onmousedown=clickNS4;
---}
---else if (document.all&&!document.getElementById){
---document.onmousedown=clickIE4;
--}
----document.oncontextmenu=new Function("alert(message);return false")
----
--var message="Sorry,right click is Disabled!";
---function clickIE4(){
--if (event.button==2){
--alert(message);
--return false;
--}
---}
--function clickNS4(e){
--if (document.layers||document.getElementById&&!document.all){
--if (e.which==2||e.which==3){
---alert(message);
--return false;
--}
---}
--}
---if (document.layers){
---document.captureEvents(Event.MOUSEDOWN);
---document.onmousedown=clickNS4;
---}
---else if (document.all&&!document.getElementById){
---document.onmousedown=clickIE4;
--}
----document.oncontextmenu=new Function("alert(message);return false")
----
Labels:
java script,
web designing,
website
Subscribe to:
Posts (Atom)