Category Archives: Languages

Xamarin: error CS0103: The name ‘PhoneCallManager’ does not exist in the current context

https://elearning.xamarin.com/forms/xam120/  Trying to follow the Tutorial mentioned :  XAML in Xamarin.Forms (XAM120) and getting this errorPhonewordPhonewordPhoneword.UWPPhoneDialer.UWP.cs(21,17,21,33): error CS0103: The name ‘PhoneCallManager’ does not exist in the current context Code Snippet: public Task DialAsync(string number)        {            if (ApiInformation.IsApiContractPresent(“Windows.ApplicationModel.Calls.CallsPhoneContract”, 1, 0))       … Read more »

Getting the Computer Name, Domain, more using powershell

Getting the Computer Name, Domain, more using powershell a. gc env:Computername    $computer = get-content env:ComputerNameUse the WMI objects to get computer name and other details$Computer = Get-WmiObject -Class Win32_ComputerSystem -ComputerName $computer -namespace “rootCIMV2”for Machine domain: $computer.Domain# Print Computer Name  “Computer Name is: {0}” -f $Computer.Name  If you want to get… Read more »