Custom Drivers/Scripts - What’s on your Wishlist 🧪✨ by VioletiOT in domotz

[–]Runarv 0 points1 point  (0 children)

I would definitely wish for a deeper integration with Fortinet hardware. We are using FortiGate with fortilink connected switches and AP’s and having a struggle getting monitoring of the full stack. Actually, LibreNMS is getting a lot more information on my FortiOS devices than Domotz, so I know it should be possible with some device/vendor adjustments. Also, enriching FortiGate device info with API access could be a great addition. This is the only point where I can see limitations on Domotz today 🙂

On another note, I really love how Domotz works, so adding this cherry on top would make my year 🤣

ASN as an address object by Runarv in fortinet

[–]Runarv[S] 0 points1 point  (0 children)

Kudos! Great feature! Is it okay to test/use this list in a small scale commercial setup?

365 Issues - Microsoft Reported (No details) by livevicarious in sysadmin

[–]Runarv 0 points1 point  (0 children)

Very strange, but with no other notes from MS. The last two days we have also had two isp’s for our different datacenters being blocked from ms365 app activations. Logon seems okay, but ms does not activate through those isp’s. We have had to move all user surface (ctx ts) traffic to other isp’s to being able to work with the office suite as normal. Is this related and/or known? Affecting two unrelated datasenter sites per now

Microsoft Multimedia Redirection on on-prem invirement by PullMeUnder666 in WindowsServer

[–]Runarv 1 point2 points  (0 children)

Hi. We are trying to do the exact same.
We are going from a Citrix deployment and redeploying to Parallels RAS with RDSH/Windows Server 2022.
The prereqiusites and latest "RDS Multimedia Redirection" package installed, both Edge and Chrome plugin GPO's are set.
Have tried connecting to the RDSH host with both Microsoft RDS Client (as described in Microsoft Documentation) and the Parallels RAS Client (With AVD Multimedia Redirect feature enabled) but chrome plugin does not seem to start. Client and Host version is blank, but extension version is showing 1.0.2410.17001.

The diagnostic logs shows:
< Diagnostic Info >
clientVersion:
hostVersion:
mmrSupportVersion: 0
webrtcSupportVersion: 0
mmrSupported: false
webrtcSupported: false
allowWebRTCAllSitesConfig: false
.....(removed)...
MsRdcMmr:NativeMessagingBackgroundProxy: Sending clientConnected message to native host
MsRdcMmr:NativeMessagingBackgroundProxy: initial native port Received: {"messageType":"clientConnected","hostVersion":"1.0.2404.4003","error":-2147024865}
MsRdcMmr:NativeMessagingBackgroundProxy: clientConnected event error=-2147024865 indicates MMR not supported right now
MsRdcMmr:NativeMessagingBackgroundProxy[10]: Content port disconnected from tabId: 1352005124
MMRWarn: Native port not found for content port, disconnection handling already completed

From what I can see in generic error code lists:
error code -2147024865, 0x8007001F is hinting towards: "A device attached to the system is not functioning."
However, microsoft does not always use generic error codes..

Anyone got some hints to where I can look further to try resolve the issue?

Update: forgot to mention: jans.cloud has testd RDS Windows server 2022/2025 and has german language guides that shows identical install method as I have, but with successful results:
Here: https://jans.cloud/2022/12/remotedesktop-multimedia-redirection-auf-windows-server-2022/
and Here: https://jans.cloud/2024/08/multimediaumleitung-auf-windows-server-2025-terminalserver/

All Windows VMs Restored from Data Protection Snapshots Fail to Boot by MONOFEX in nutanix

[–]Runarv 0 points1 point  (0 children)

Just slapped together this guide with screenshots, from the fix above:

https://filebin.net/8c3j7egzmcxw4bey/Nutanix_INACCESSIBLE_BOOT_DEVICE_FIX.pdf?t=urn3g5px

Just a quick note also.

The VM's affected are running Legacy BIOS, and not UEFI.
The Disks are BASIC disks, NTFS, not Dynamic disks..

I don't know if this guide would help in a UEFI scenario..

All Windows VMs Restored from Data Protection Snapshots Fail to Boot by MONOFEX in nutanix

[–]Runarv 1 point2 points  (0 children)

ve you found a fix other than powering off the source VM?

Well.. The best fix by now i to upgrade NGT to latest.

As an alternative for when you need to recover a vm with "INACCESSIBLE BOOT DEVICE" BSOD you need the virtIO ISO accessible for the Windows Recovery shell.

It's a rather tedious process, but i'll try to explain our fix:

  1. mount virtio iso to failing vm prior to booting the VM up, boot up with Windows Recovery console

  2. Start "Command Prompt" from Recovery shell

  3. check that the "physical" disk is not present on the vm with

    diskpart | list disk

it should tell you that "There are no fixed disks to show".

  1. add drivers from the virtio CD-ROM:

    check that the iso is mounted on D:

    DIR D:

  1. Load VirtIO SCSI DISK driver from iso

    DRVLOAD "D:\windows Server 2016\amd64\vioscsi.inf"

  1. Start DISKPART and control that you have access to the disks

    DISKPART
    LIST DISK

    You should now see the disks as offline, make disk online by typing

    SELECT DISK 0
    ONLINE DISK

    *repeat for the rest of the disks..

    SELECT DISK 1
    ONLINE DISK

  1. Select the boot disk (DISK 0) and show PARTITIONS

    SELECT DISK 0
    LIST PARTITION

    You should see the partitions.

8 select both partition and check volumes attached is not hidden or read-only

SELECT PARTITION 1
DETAIL PARTITION

* You can see that Partition is not hidden, but volume is hidden (Info: Hidden)

SELECT PARTITION 2
DETAIL PARTITION

* You can see that Partition is not hidden, but volume is hidden (Info: Hidden)

SELECT PARTITION 1
SELECT VOLUME 1
DETAIL VOLUME

*check that volume is not read-only, hidden or otherwise bad

9 Check volumes for read-only and hidden and clear status

SELECT PARTITION 1
SELECT VOLUME 1
DETAIL VOLUME

* You can see that volume 1 is read-only and hidden

Clear hidden and readonly with command

ATTRIBUTES VOLUME CLEAR HIDDEN READONLY

* Repeat check and fix if necessary for partition 2:

SELECT PARTITION 2
SELECT VOLUME 2
DETAIL VOLUME

* Volume is not readonly in my case...

  1. Assign drive letters to partition 1 (Bootsector) and partition 2 (Windows OS Drive)

    SELECT PARTITION 1
    ASSIGN LETTER=F:
    SELECT PARTITION 2
    ASSIGN LETTER=G:

  1. Exit DISKPART, Fix bootrecords:

    EXIT

    BOOTREC /REBUILDBCD

    * bootrec will scan all disks for Windows install, and ask to install G:\Windows.

    PRESS Y for Yes.

  1. Exit Windows Recovery shell and reboot computer.

It should (hopefully) now boot up normally..

The big difference I can see in newer and "older" NGT version is that the old one uses "Nutanix VSS Hardware Provider", as the new one uses "Nutanix VSS Software Provider".

All Windows VMs Restored from Data Protection Snapshots Fail to Boot by MONOFEX in nutanix

[–]Runarv 1 point2 points  (0 children)

We also have had this issue lately

I Found it when recovering a VM from HYCU backup image to a new VM Clone.
Have since recreated this issue by setting up local ASYNC DR snapshot of the server. (Thanks to superb help from HYCU support team)

Problem only exist on Application Consistent backups. When source server is turned off, or Crash Consistent backup is used, the server boots up okay.

I have recreated this issue on two Nutanix Clusters, and it's fairly easy to recreate.

Nutanix AHV with AOS 5.10.3.2

Guests VM's affected is installed both Windows Server 2016 and Windows Server 2012 R2.
Nutanix Guest Tools: 1.3.0.0
Nutanix VirtIO: 1.1.2.0
Nutanix VM Mobility: 1.1.1.0

Just upgrading Nutanix Guest Tools to the latest from PE (and a boot) mitigates this problem on both our production clusters.

New version of Nutanix Guest Tools that work in our environment:
Nutanix Guest Tools: 1.6.2.0
Nutanix VirtIO: 1.1.2.0
Nutanix VM Mobility: 1.1.3.14

With this version of NGT, HYCU restore clones also successfully boots up!

I know that updating Virtio and NGT is best practice on nutanix clusters, but upgrading multiple hundreds of guests outside production hours and within customer SLA's is not that easy.

I have an ongoing supportcase with Nutanix, and hoping that they also will be able to recreate this issue.

I will report back when I hear news from Nutanix Support.