Pages

Se afișează postările cu eticheta Microsoft Windows. Afișați toate postările
Se afișează postările cu eticheta Microsoft Windows. Afișați toate postările

duminică, 7 septembrie 2025

News : Windows PowerShell and more ...

PowerShell 2.0 is finally history: The version of the shell program introduced with Windows 7 will be removed from Windows 11 version 24H2 from August 2025 and from Windows Server 2025 from September 2025.
Windows PowerShell is a command-line shell and scripting environment developed by Microsoft, designed for system administration and automation tasks designed by Jeffrey Snover, Bruce Payette, James Truher (et al.) by DeveloperMicrosoft team, and first appearedNovember 14, 2006 .
The default blue now designe is known by any windows user.
PowerShell 7 is the latest major update to PowerShell, a cross-platform automation tool and configuration framework optimized for dealing with structured data (e.g., JSON, CSV, XML), REST APIs, and object models. PowerShell 7 runs on Windows, Linux, and macOS, making it a versatile tool for various environments. This comes with a black color.
Let's see, this script performs a system integrity check, including checks for Python installation, recent file modifications, and potential unauthorized changes.
# === SYSTEM INTEGRITY AUDIT ===

# Installed applications
Write-Host "Installed applications:"
$apps = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*, HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* |
        Where-Object { $_.DisplayName } |
        Select-Object DisplayName, DisplayVersion, InstallDate |
        Sort-Object DisplayName
foreach ($a in $apps) {
    $name = $a.DisplayName
    $ver  = if ($a.DisplayVersion) { $a.DisplayVersion } else { "-" }
    $date = if ($a.InstallDate) { $a.InstallDate } else { "-" }
    Write-Host "$name | $ver | $date"
}

# DLLs modified recently
Write-Host "DLLs modified in the last 7 days:"
$dlls = Get-ChildItem -Path "C:\Windows","C:\Program Files","C:\Program Files (x86)" -Recurse -Filter *.dll -File -ErrorAction SilentlyContinue |
        Where-Object { $_.LastWriteTime -gt (Get-Date).AddDays(-7) }
foreach ($d in $dlls) {
    Write-Host "$($d.FullName) | $($d.LastWriteTime.ToString('yyyy-MM-dd HH:mm:ss'))"
}

# SSH logs
Write-Host "SSH logs:"
if (Get-Service -Name sshd -ErrorAction SilentlyContinue) {
    $events = Get-WinEvent -LogName "Microsoft-Windows-OpenSSH/Operational" -MaxEvents 20 -ErrorAction SilentlyContinue
    foreach ($e in $events) {
        $t = $e.TimeCreated.ToString("yyyy-MM-dd HH:mm:ss")
        $m = ($e.Message -replace "\r?\n",' ')
        Write-Host "$t | $m"
    }
} else {
    Write-Host "OpenSSH service is not active."
}

# System files modified recently
Write-Host "System files modified in the last 3 days:"
$sys = Get-ChildItem -Path "C:\Windows" -Recurse -File -ErrorAction SilentlyContinue |
       Where-Object { $_.LastWriteTime -gt (Get-Date).AddDays(-3) }
foreach ($f in $sys) {
    Write-Host "$($f.FullName) | $($f.LastWriteTime.ToString('yyyy-MM-dd HH:mm:ss'))"
}

# Python check
Write-Host "Python check:"
$pythonPaths = @(Get-Command python -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Source)
if ($pythonPaths.Count -gt 0) {
    foreach ($p in $pythonPaths) { Write-Host "Path: $p" }
    try {
        $v = & $pythonPaths[0] --version 2>$null
        Write-Host "Version: $v"
    } catch { Write-Host "Error retrieving Python version." }
} else {
    Write-Host "Python not found."
}

# pip check
Write-Host "pip check:"
$pipPath = Get-Command pip -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Source
if ($pipPath) {
    Write-Host "Path: $pipPath"
    try {
        $pv = & $pipPath --version 2>$null
        Write-Host "Version: $pv"
    } catch { Write-Host "Error retrieving pip version." }
} else {
    Write-Host "pip not found."
}

# Alias check
Write-Host "Checking python.exe alias:"
$aliasPath = "$env:LOCALAPPDATA\Microsoft\WindowsApps\python.exe"
if (Test-Path $aliasPath) {
    Write-Host "Alias exists: $aliasPath"
} else {
    Write-Host "Alias not found."

}

Write-Host "Audit completed."

sâmbătă, 6 septembrie 2025

News : Windows Subsystem For Android project.

Run Windows Subsystem For Android on your Windows 10 and Windows 11 PC using prebuilt binaries with Google Play Store (MindTheGapps) and/or Magisk or KernelSU (root solutions) built in.
The project can be found on the GitHub repo.

duminică, 17 august 2025

News : GNOME 49.beta and more ...

GNOME is used as the default experience across Red Hat Enterprise Linux, Ubuntu, Debian, Fedora Workstation, SUSE Linux Enterprise, Vanilla OS, Endless OS, and more.
The last version is named as : GNOME 48, “Bengaluru”, see the official webpage.
This is not a news or something special, the news comes with:
GNOME 49.beta is now available. It also marks the start of the UI, feature and API freezes (collectively known as The Freeze). If you’d like to target the GNOME 49 platform, this is the best time to start testing your apps or shell extensions.
... and they try to help users with: Continue using your old computer after the end of Windows 10 support this October. Visit endof10.org

vineri, 18 iulie 2025

News : Sora artificial intelligence comes on Microsoft copilot.

I saw today a new change on Microsoft copilot, the artificial intelligence comes with the Sora.
If you want to simply test whether an artificial intelligence that generates images and videos is well implemented, you need to find the correct prompt that highlights the way the model is created. Here is an example:
Make an video with Romanian actress dancing on beach!
Artificial intelligence will have to decide on implemented selection elements and perform complex movements - just like human dance. One can see how they try to create the image and the body is twisted, and completed with clothes; evidently, variations will be similar and will not go beyond these limits ...

vineri, 28 martie 2025

Windows 10 : Microsoft Edge WebView2 - stop PID's.

The Microsoft Edge WebView2 can stop some running software if the windows not work well.
I have on this laptop an old Windows 10 with 4 Gb RAM and some services go to low and PIS's are escape from basic running ...
The broker software cannot manage the all changes and Microsoft Edge WebView2 jump even on Copilot and stop my running work.
I thin k was a intrusinon on the windows os with some bad customization ...
Because I don't have time resource for learning Windows administrartion and for my provider of this local area network is a hacker or maybe is hached ... I use artificial intelligence to stop the Microsoft Edge WebView2 PID's that is stop and jump around ...
I created on admin command com this script to solve this part of runnig ...
@echo off
echo Closing processes named msedgewebview2...
tasklist | findstr "msedgewebview2" >nul
if %errorlevel%==0 (
    taskkill /IM msedgewebview2.exe /F
    echo Processes terminated successfully.
) else (
    echo No processes found with the name msedgewebview2.
)
pause

duminică, 22 octombrie 2023

News : Microsoft Windows take care of you !

Do you care about this ???
Your communications with other people; the submissions you send to Microsoft through the Services; and the files, photographs, documents, audio, digital works, live streams, and videos that you upload, store, transmit, create, generate, or share through the Services, or any input you submit to generate content ("Your Content").

joi, 23 februarie 2023

See these 8 Things to Know About Octopath Traveler II from ING.

A good video about 8 Things to Know About Octopath Traveler II from the ING youtube channel.
About the game, you can find more information in this Wikipedia article.