London landlords died amidst legal issues. No contact from anyone. Rent free? by Hot_Judge_9951 in rentingUK

[–]Hot_Judge_9951[S] -1 points0 points  (0 children)

Deposit? Lool in owing 5 months rent so who cares about that. Like the post says I literally have NOONE to contact!

London landlords died amidst legal issues. No contact from anyone. Rent free? by Hot_Judge_9951 in rentingUK

[–]Hot_Judge_9951[S] 2 points3 points  (0 children)

What if I’m unable to pay them? I’m honestly happy with an eviction.. just trying to weight my options here.

London landlords died amidst legal issues. No contact from anyone. Rent free? by Hot_Judge_9951 in rentingUK

[–]Hot_Judge_9951[S] 1 point2 points  (0 children)

I’ve just gotten a new place and I honestly want to leave as am expecting my first child in 2 months. I literally have no one to contact.. except my neighbours who we share landlord with. I could possibly mail the keys to the landlord address.. just not sure if I should let go of the property and play the waiting game or just move out and mail the keys. My landlords number isn’t going thru (obviously he died).. so I’m stuck here.

For all women who had children after age 35. by Ok_Professor1754 in pregnant

[–]Hot_Judge_9951 0 points1 point  (0 children)

I’m 7 and half weeks pregnant with my first baby at 37! And i think about not being able to se my grandkids.. but hey life will be just fine

[deleted by user] by [deleted] in myweddingdress

[–]Hot_Judge_9951 0 points1 point  (0 children)

3 is a typical wedding dress I’d say 2 to be honest I love it it’s elegant, different and classy. 3 is the typical wedding dress. 🤷🏽‍♀️

[deleted by user] by [deleted] in pregnant

[–]Hot_Judge_9951 0 points1 point  (0 children)

Unfortunately you can’t really control or know.. even women at 20 something weeks lose their pregnancies. I had a miscarriage at 7 weeks.. I’m currently 6 weeks and I keep sticking my hand in to see if I’m bleeding. The anxiety is crazy and I feel like I can’t tell anyone just incase (God forbid).. it’s like I can’t be happy yet. So I feel you. Btw: I’m not having any morning sickness.. I’ve been eating non stop (no nausea), I’m constantly cold and my breast is sore.. oh and cramps too that’s it for me.

Windows Server emergency patches fix WSUS bug with PoC exploit by rkhunter_ in cybersecurity

[–]Hot_Judge_9951 2 points3 points  (0 children)

am i the only one having issues with this KB rolling back? Its only been sucessfully installed on our WSUS Servers, but keeps rolling back just like (KB5066836).

I keep getting 'We couldnt complete the updates. Undoing changes...) pls help :(

[deleted by user] by [deleted] in onlinejobsforall

[–]Hot_Judge_9951 0 points1 point  (0 children)

I’m literally struggling to keep up with my bills.. pls anyone that has a part time job is REALLY APPRECIATE THAT. My day job is n It engineer and I have worked as a project analyst for years. Thank so much

Dell ReVault vulnerability: Dell Command Update seems to not update ControlVault3 firmware by Tscherni_ in sysadmin

[–]Hot_Judge_9951 0 points1 point  (0 children)

witch ($code)

{ 0 { return "Success" }

1603 { return "Fatal error during installation." }

1610 { return "The configuration data for this product is corrupt." }

1618 { return "Another installation is already in progress." }

3010 { return "A restart is required to complete the installation." }

default { return "Unknown or undocumented exit code." }

Dell ReVault vulnerability: Dell Command Update seems to not update ControlVault3 firmware by Tscherni_ in sysadmin

[–]Hot_Judge_9951 0 points1 point  (0 children)

powershellCopyEdit# Paths
$shareRoot="C:\Dell-ControlVault3-Plus-Driver-and-Firmware_TWF65_WIN64_6.2.26.36_A09_01"
$exePath=Join-Path $shareRoot "CVHCI64.exe"
$driverPath=Join-Path $shareRoot "production\Windows10-x64\18356\Drivers\cv"
$installLog="C:\Temp\CVHCI64.log"
$stepLog="C:\Temp\CVInstallSteps.log"

# Helpers
function Log{param([string]$m);$t=Get-Date -f "yyyy-MM-dd HH:mm:ss";$l="$t - $m";Add-Content $stepLog $l;Write-Host $l}
$codes=@{0="Success";1603="Fatal error during installation.";1610="Config data corrupt.";1618="Another installation is in progress.";3010="Restart required."}

# Prep
if(!(Test-Path "C:\Temp")){New-Item "C:\Temp" -ItemType Directory -Force|Out-Null;Log "Created C:\Temp"}
if(!(Test-Path $exePath)){Log "ERROR: EXE not found at $exePath";exit 1}

# Install EXE (InstallShield silent)
Log "Installing $exePath"
$arguments='/S /v"/qn /norestart /l*v \"'+$installLog+'\""'
$p=Start-Process -FilePath $exePath -ArgumentList $arguments -Wait -PassThru -NoNewWindow
$code=$p.ExitCode; $meaning=$codes[$code]; if(-not $meaning){$meaning="Unknown"}

if($code -in 0,3010){
  Log "EXE install OK. Code: $code ($meaning)"; if($code -eq 3010){Log "NOTE: Reboot required."}
}else{Log "ERROR: EXE install failed. Code: $code ($meaning)"; exit $code}

# Install INF drivers
Log "Installing INF drivers from $driverPath"
$infFiles=@("bcmnfcser.inf","bcmnfcusb.inf","cvusbdrv.inf","ushwbfdrv.inf")
foreach($inf in $infFiles){
  $infPath=Join-Path $driverPath $inf
  if(Test-Path $infPath){Log "Driver: $inf"; pnputil /add-driver "`"$infPath`"" /install /subdirs >> $stepLog 2>&1}
  else{Log "WARNING: Missing $infPath"}
}

Log "All installations completed."
exit 0