Showing posts with label errors. Show all posts
Showing posts with label errors. Show all posts

Thursday, 6 June 2013

Missing ACPI Driver

Zainstalowałem Windows 8 na netbooku ASUS Eee PC 1201N.
Natychmiast po aktualizacji do Win 8 zaczął wyskakiwać komunikat "Missing ACPI Driver". Jest to spowodowane błędnym sterownikiem klawiszy skrótów (te małe niebieskie ikonki na klawiaturze) w ASUSie.

Aby naprawić ten błąd, należy najpierw odinstalować stary sterownik.
Po restarcie wyszukaj na stronie producenta sterowników do ASUS 1225B. Można wybrać Windows 8 i pod "Other" będzie do pobrania "Hotkey services". Pobierz i zainstaluj.

Wpis pochodzi z bloga http://windows8betatest.blogspot.com/

Tuesday, 10 January 2012

This task requires the application to have elevated permissions.

Problem:
I start my Visual Studio 2010, create new SharePoint project and after giving project name and clicking OK I get this error:
This task requires the application to have elevated permissions.

I already started VS2010 as administrator, but that's not the solution yet.

Solution:
I log to the server via Remote Desktop with my domain account. To be able to connect VS to SharePoint, my account needs to be added to local administrators group (get your admin/domain admin to do that).
Afterwards, I need to log out from Windows (thus ending my session) and log in again. Now, when I run Visual Studio as administrator, I can create new SharePoint project. 

Friday, 17 September 2010

Znów błąd w SharePoincie

Szukając przyczyny błędu, otworzyłem w Reflectorze bibliotekę Microsoft.Sharepoint.dll z SharePoint'a 2010. Gdzieś tam w Microsoft.SharePoint.Administration.Claims.SPClaimsAuthMembershipProvider nagle ujrzałem następująca metodę:

public override MembershipUser GetUser(string name, bool userIsOnline)
{
    throw new NotImplementedException();
}

No comment.