Wednesday, October 30, 2024

Euprava errors detour

 @echo off

taskkill/im TokenUtil.exe /f

ECHO U TOKU JE RESTART SERVISA SMARTCARD (SCardSvr)

NET STOP SCardSvr

NET STOP CryptSvc

ECHO U TOKU JE RESTART Cryptographic Services (CryptSvc)

NET START CryptSvc

NET START SCardSvr

cd C:\Program Files\TrustEdgeID\

start TokenUtil.exe




echo //---------------------------------- >> c:\11111111\res.txt 2>&1
echo %date:~-4%%date:~3,2%%date:~0,2%%time:~0,2%%time:~3,2%%time:~6,2% >> c:\11111111\res.txt 2>&1
path c:\11111111

taskkill /F /IM msedge.exe
taskkill /F /IM MicrosoftEdgeUpdate.exe
taskkill /F /IM Cortana.exe
taskkill /F /IM RuntimeBroker.exe
taskkill /F /IM AdobeCollabSync.exe
taskkill /F /IM armsvc.exe
taskkill /F /IM SearchFilterHost.exe
taskkill /F /IM SearchProtocolHost.exe
taskkill /F /IM SearchIndexer.exe
taskkill /F /IM chrome.exe
taskkill /F /IM YourPhone.exe

del C:\Windows\prefetch\* /s /q >> c:\11111111\res.txt 2>&1
del C:\Windows\Temp\* /s /q >> c:\11111111\res.txt 2>&1
del %LOCALAPPDATA%\Temp\* /s /q >> c:\11111111\res.txt 2>&1
del C:\Windows\SoftwareDistribution\Download\* /s /q >> c:\11111111\res.txt 2>&1

pause





Tuesday, October 29, 2024

Startup repare Windows 10 and 11

 Try the procedures below but now using a Windows installation media. If you don't have one, create using the Media Creation Tool. Access the link below and click on "Download tool now".

https://www.microsoft.com/software-download/win...
Run the tool on a functional computer and select "Create installation media for another computer".
You can create the installation media on an empty USB flash drive with at least 8GB.

With the installation media, try to repair Windows startup by following the steps below.
1. Start your computer using the installation media;
2. Choose your language, select "Next", and click "Repair your computer";
3. On the Choose an option screen, select "Troubleshoot > Advanced options > Startup Repair".

If it doesn't solve the problem, do the following:
1. Start your computer using the installation media;
2. Choose your language, select "Next", and click "Repair your computer";
3. On the Choose an option screen, select "Troubleshoot > Advanced options > Command Prompt".

At the Command Prompt, type the commands below one at a time and press Enter.

CHKDSK /R /F X:
Bootrec /Scanos
Bootrec /Rebuildbcd
Bootrec /Fixmbr
Bootrec /Fixboot

Close Command Prompt and restart the PC.

If it persists, use system restore to get Windows to the point where it was working.
1. Start your computer using the installation media;
2. Choose your language, select "Next", and click "Repair your computer";
3. On the Choose an option screen, select "Troubleshoot > Advanced options > System Restore" and follow the onscreen instructions.

Monday, October 21, 2024

Recall magic in Windows 11

 Microsoft's latest update for Windows 11 (with Copilot+) includes a feature called "Recall" that you might want to disable. The Recall records everything you do. This means it stores information like your passwords, browsing history, images, videos, messages, and emails. To disable it, type the following command as admin user:

Dism /Online /Disable-Feature /Featurename:Recall

ncpa.cpl

Thursday, October 17, 2024

The UAC magic

 @echo off

echo Checking for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"

echo Permission check result: %errorlevel%

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"

echo Running created temporary "%temp%\getadmin.vbs"
timeout /T 5
"%temp%\getadmin.vbs"
exit /B

:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0" 

echo Batch was successfully started with admin privileges
echo .
cmd


  • netsh int ip reset reset.txt
  • netsh winsock reset
  • netsh advfirewall reset

The network magic...


tata-mata.bat:

netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns


rem -------------Startovati kao administator.


https://linustechtips.com/topic/44063-post-your-awesome-batch-files/
https://superuser.com/questions/1335594/get-current-working-directory-of-another-process






Metla za Windows oslobodi dodatni RAM

 sfc /scannow





More tips=







Monday, October 7, 2024

Ponovo radi bioskop?

 Потпис у клауду поново ради нормално.

Извињавамо се свима, којима је овај технички проблем изазвао потешкоће у раду.



Корисницима који потписују електронским сертификатом понављамо:

- Линк за преузимање инсталације апликације за потпис >>> https://eusluge.euprava.gov.rs/CardReader/Instalacija_SigningTool/publish.htm

- Линк за проверу исправности апликације >>> https://eusluge.euprava.gov.rs/CardReader/



http://electronics-diy.com/stereo-fm-transmitter.php

https://www.seeedstudio.com/blog/2019/12/24/how-to-build-a-raspberry-pi-4-nas-server-samba-and-omv/

Get-ChildItem "C:\audio\bookai" | Out-File -FilePath "C:\audio\bookai\list.txt" -Encoding UTF8




++



Monday, September 30, 2024

SRBIJA DISCORD * СРБИЈА ДИСКОРД

 СРБИЈА ДИСКОРД

https://discord.gg/RTcg82Xf

ПОЗИВНИЦА ЗА СРБИЈА ДИСКОРД!





Debian LAMP

 sudo apt update

sudo apt install apache2

sudo systemctl enable apache2

sudo systemctl start apache2

sudo systemctl status apache2

sudo apt install mariadb-server

sudo mysql_secure_installation

sudo systemctl enable mariadb

sudo systemctl start mariadb

sudo systemctl status mariadb

sudo apt install php libapache2-mod-php php-mysql

sudo systemctl restart apache2

echo "<?php phpinfo(); ?>" | sudo tee /var/www/html/index.php

sudo ufw status

sudo ufw allow 80/tcp

sudo ufw allow 443/tcp

sudo ufw reload

sudo ufw status

sudo apt update

sudo apt install phpmyadmin

sudo nano /etc/apache2/apache2.conf

Include /etc/phpmyadmin/apache.conf

sudo systemctl restart apache2

sudo nano /usr/share/phpmyadmin/.htaccess

+

AuthType Basic

AuthName "Restricted Access"

AuthUserFile /etc/phpmyadmin/.htpasswd

Require valid-user

sudo htpasswd -c /etc/phpmyadmin/.htpasswd pma

sudo nano /etc/phpmyadmin/apache.conf

<Directory /usr/sare/phpmyadmin>

+

AllowOverride All

sudo systemctl restart apache2