Search found 192 matches

by daniele
28 Apr 2023, 10:25
Forum: Argomenti vari
Topic: How to Stop an Unresponsive Hyper-V Virtual Machine
Replies: 0
Views: 2772

How to Stop an Unresponsive Hyper-V Virtual Machine

Look at this article for reference: https://petri.com/how-to-stop-an-unresponsive-hyper-v-virtual-machine/ METHOD 1 - Kill just that VM which isn't responding Using Powershell: 1) Get VM name Get-VM 2) Find VM GUID $VmGUID = (Get-VM 'Windows 11').id 3) Find the process ID for the VM $VMWMProc = (Get ...
by daniele
11 Apr 2023, 17:57
Forum: Argomenti vari
Topic: How to Run Batch Files silently in background on Windows 11/10
Replies: 0
Views: 3054

How to Run Batch Files silently in background on Windows 11/10

Code: Select all

START /MIN CMD.EXE /C mysecondbatchfile.bat
or

Code: Select all

START /MIN CMD.EXE /C someexecutable.exe
by daniele
07 Apr 2023, 12:24
Forum: Argomenti vari
Topic: locked Outlook Signature Registry Settings
Replies: 0
Views: 3925

locked Outlook Signature Registry Settings

Le firme di Outlook si trovano in %userprofile%\AppData\Roaming\Microsoft\Signatures ISSUE: just intalled Office 2021 (Home & Business) on a brand new PC with WIndows 11 Pro on it. I can create a new signature in Outlook, but I cannot set any option in the section Choose default signature All the ...
by daniele
01 Apr 2023, 11:23
Forum: Argomenti vari
Topic: Find the Hostname of a Hyper-V VM
Replies: 0
Views: 3241

Find the Hostname of a Hyper-V VM

METHOD 1 - Via PowerShell Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Virtual Machine\Guest\Parameters" | Select-Object HostName METHOD 2 -Manual search into the registry Launche REGEDIT and search the following key: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Virtual Machine\Guest ...
by daniele
27 Mar 2023, 15:12
Forum: AZURE and MS 365
Topic: MS 365:install Exchange Online Management PowerShell module
Replies: 0
Views: 6589

MS 365:install Exchange Online Management PowerShell module

NOTA BENE I modules Powershell sono ubicati nei seguenti path: C:\Program Files\WindowsPowerShell\Modules --> quando si usa come Administrator C:\Users\ username \Documents\PowerShell\Modules --> per ogni singolo utente Se ricevete errore tentando di eseguire Connect-MsolService, provare a ...
by daniele
27 Mar 2023, 14:57
Forum: AZURE and MS 365
Topic: MS 365: how to connect to AzureAD
Replies: 0
Views: 6583

MS 365: how to connect to AzureAD

NOTA BENE I modules Powershell sono ubicati nei seguenti path: C:\Program Files\WindowsPowerShell\Modules --> quando si usa come Administrator C:\Users\ username \Documents\PowerShell\Modules --> per ogni singolo utente Se ricevete errore tentando di eseguire Connect-MsolService, provare a ...
by daniele
17 Mar 2023, 11:01
Forum: AZURE and MS 365
Topic: MS 365: How to connect to Sharepoint Online
Replies: 0
Views: 6759

MS 365: How to connect to Sharepoint Online

NOTA BENE I modules Powershell sono ubicati nei seguenti path: C:\Program Files\WindowsPowerShell\Modules --> quando si usa come Administrator C:\Users\ username \Documents\PowerShell\Modules --> per ogni singolo utente Se ricevete errore tentando di eseguire Connect-MsolService, provare a ...
by daniele
01 Mar 2023, 18:17
Forum: AZURE and MS 365
Topic: MS 365: How to disable the two factor authentication from single user
Replies: 0
Views: 6671

MS 365: How to disable the two factor authentication from single user

Se l'utente NON ha MFA attiva ma è parte di un tenant con la impostazioni di default (post 2019), occorre PRIMA attivare e applicare le MFA (Users > Active Users > MFA impostazioni) e POI disattivarle. It is important to know that MFA is not recommended to be disabled on user accounts. In response ...
by daniele
24 Feb 2023, 13:28
Forum: AZURE and MS 365
Topic: MS 365: how to connect to MSOnline
Replies: 0
Views: 6604

MS 365: how to connect to MSOnline

NOTA BENE I modules Powershell sono ubicati nei seguenti path: C:\Program Files\WindowsPowerShell\Modules --> quando si usa come Administrator C:\Users\ username \Documents\PowerShell\Modules --> per ogni singolo utente Se ricevete errore tentando di eseguire Connect-MsolService, provare a ...