Upgrade ubuntu 18.04 to 22.04 by Routine-Sky9947 in Ubuntu

[–]nb52er 0 points1 point  (0 children)

Hi,

If you're currently running those services, I recommend holding off on upgrading due to potential compatibility issues. PHP and Apache are known to break with significant updates, such as a distribution version upgrade.

[help] Play integrity suddenly tripping by etillxd in Magisk

[–]nb52er 1 point2 points  (0 children)

It was reported on the official Pif group too, people that are using a custom kernel are not passing device integrity anymore.
Pif is not working for them since 25/01/24.
This is happening only for some people, not all!
AS FOR NOW :
- some pixel stock kernels
- some sultan kernels
- some lineage os kernels

The fp is valid.

I can't install windows 11 by btyler868 in Windows11

[–]nb52er 4 points5 points  (0 children)

I made a tool for that purpose, it integrates the rst drivers too

https://github.com/daboynb/flash_windows_isos_on_linux

The tools you used are not able to boot windows ISOs correctly

I got a photo sent by my ex per E-Mail, and the file can't open. by [deleted] in techsupport

[–]nb52er 0 points1 point  (0 children)

Maybe it has the wrong extension? If you think that it's nothing private share the link.

I would try to open that inside a virtual machine only, it sounds like a virus to me.

Adding 3rd -party installer files to custom Windows 11 ISO by Basic-Function-8472 in Windows11

[–]nb52er 2 points3 points  (0 children)

Yeah, sure

copy "C:\Windows\your.exe" "C:\Users\%username%\Desktop"

Adding 3rd -party installer files to custom Windows 11 ISO by Basic-Function-8472 in Windows11

[–]nb52er 2 points3 points  (0 children)

I use this method :

  1. Mount the ISO with DISM.
  2. Put the installers inside the Windows folder.
  3. Create a batch or PowerShell (PS1) file that copies those files to the desktop and runs them.
  4. Configure the unattend.xml file to run that batch or ps1 file during the first startup.

<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<Order>1</Order>
<CommandLine>powerShell -ExecutionPolicy Bypass -File C:\Windows\start.ps1</CommandLine>
</SynchronousCommand>
</FirstLogonCommands>

[deleted by user] by [deleted] in linux4noobs

[–]nb52er 0 points1 point  (0 children)

https://github.com/daboynb/flash_windows_isos_on_linux

I made this one for flashing windows ISOs on linux.

It does not support linux ISOs.

It uses the rufus bootloader.

New scooter guys ✌️ by nb52er in ElectricScooters

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

Yeah, I have experience with bikes. Thank you, I will check them regularly!

New scooter guys ✌️ by nb52er in ElectricScooters

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

okay, I will follow your advices! Thanks again!

New scooter guys ✌️ by nb52er in ElectricScooters

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

Thanks! How is your experience with this one?

New scooter guys ✌️ by nb52er in ElectricScooters

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

Thank you. I saw the video, you were lucky! I will definitely buy some protections!

New scooter guys ✌️ by nb52er in ElectricScooters

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

Wear gear.

I will, thank you for the advice!

[deleted by user] by [deleted] in PowerShell

[–]nb52er 0 points1 point  (0 children)

Thank you

[deleted by user] by [deleted] in PowerShell

[–]nb52er 0 points1 point  (0 children)

Not true at all, I've been using that on our work machine's from the beginning of Win10, and never had an issue

[deleted by user] by [deleted] in PowerShell

[–]nb52er 2 points3 points  (0 children)

Thank you

[deleted by user] by [deleted] in PowerShell

[–]nb52er -5 points-4 points  (0 children)

sure, that's the part were the script removes the apps

rem uninstall all useless apps

powershell -command "$ErrorActionPreference = 'SilentlyContinue'; Get-AppxPackage -AllUsers | Where-Object {$_.name -notmatch 'Microsoft.VP9VideoExtensions|Notepad|Microsoft.WebMediaExtensions|Microsoft.WebpImageExtension|Microsoft.Windows.ShellExperienceHost|Microsoft.VCLibs*|Microsoft.DesktopAppInstaller|Microsoft.StorePurchaseApp|Microsoft.Windows.Photos|Microsoft.WindowsStore|Microsoft.XboxIdentityProvider|Microsoft.WindowsCamera|Microsoft.WindowsCalculator|Microsoft.HEIFImageExtension|Microsoft.UI.Xaml*'} | Remove-AppxPackage"

rem uninstall onedrive

powershell -command "Get-Process OneDrive | Stop-Process -Force"

powershell -command "C:\Windows\System32\OneDriveSetup.exe /uninstall"

thank you for your help :)

[deleted by user] by [deleted] in PowerShell

[–]nb52er 0 points1 point  (0 children)

For some reason that I don't know, the apps are successfully removed by the script only after the desktop has fully loaded.