Friday, December 13, 2024
Prevent duplicate entry in excel.
Tuesday, November 26, 2024
Upload file to server using Power Shell Command
scp file_name.zip username@server_ip/server_address:/directory_path
Sunday, October 20, 2024
Office 2021 Activation using command
@echo off
title Activate Microsoft Office 2021 (ALL versions) for FREE - office.com&cls&echo =====================================================================================&echo #Project: Activating Microsoft software products for FREE without additional software&echo =====================================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2021&echo - Microsoft Office Professional Plus 2021&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2021VL_KMS*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo =====================================================================================&echo Activating your product...&cscript //nologo slmgr.vbs /ckms >nul&cscript //nologo ospp.vbs /setprt:1688 >nul&cscript //nologo ospp.vbs /unpkey:6F7TH >nul&set i=1&cscript //nologo ospp.vbs /inpkey:FXYTK-NJJ8C-GB6DW-3DYQT-6F7TH >nul||goto notsupported
:skms
if %i% GTR 10 goto busy
if %i% EQU 1 set KMS=kms7.office.com
if %i% EQU 2 set KMS=e8.us.to
if %i% EQU 3 set KMS=e9.us.to
if %i% GTR 3 goto ato
cscript //nologo ospp.vbs /sethst:%KMS% >nul
:ato
echo =====================================================================================&echo.&echo.&cscript //nologo ospp.vbs /act | find /i "successful" && (echo.&echo =====================================================================================&echo.&echo #Please consider supporting this project: donate to my paypal "devomman@gmail" &echo #Your support is helping me keep my servers running 24/7!&echo.&echo =====================================================================================&choice /n /c YN /m "Would you like to visit my blog [Y,N]?" & if errorlevel 2 exit) || (echo The connection to my KMS server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto skms)
explorer "https://www.office.com/"&goto halt
:notsupported
echo =====================================================================================&echo.&echo Sorry, your version is not supported.&echo.&goto halt
:busy
echo =====================================================================================&echo.&echo Sorry, the server is busy and can't respond to your request. Please try again.&echo.
:halt
pause >nul
Friday, October 11, 2024
Create an admin account in WordPress via MySQL
INSERT INTO `wp_users`(
`user_login`,
`user_pass`,
`user_nicename`,
`user_email`,
`user_status`
)
VALUES(
'admin999',
MD5('password999'),
'firstname lastname',
'email@example.com',
'0'
);
INSERT INTO `wp_usermeta`(
`umeta_id`,
`user_id`,
`meta_key`,
`meta_value`
)
VALUES(
NULL,
(
SELECT
MAX(id)
FROM
wp_users
),
'wp_capabilities',
'a:1:{s:13:"administrator";s:1:"1";}'
);
INSERT INTO `wp_usermeta`(
`umeta_id`,
`user_id`,
`meta_key`,
`meta_value`
)
VALUES(
NULL,
(
SELECT
MAX(id)
FROM
wp_users
),
'wp_user_level',
'10'
);
Wednesday, October 2, 2024
Contatenate text to Date to Sort
Convert 01.01.2024 to 01/01/2024 to count as date in Excel.
=DATE(RIGHT(A2,4),MID(A2,FIND(".",A2,1)+1,FIND(".",A2,FIND(".",A2,1)+1)-FIND(".",A2,1)-1),MID(A2,1,FIND(".",A2,1)))
Monday, September 30, 2024
How to install Plesk on Ubuntu 22.00 using a single command
# sh <(curl https://autoinstall.plesk.com/one-click-installer || wget -O - https://autoinstall.plesk.com/one-click-installer)
Monday, September 16, 2024
Toshiba e studio 2829a print using lan cable without router
To set up a Toshiba e-STUDIO 2829A printer to print using a LAN cable without a router, you'll need to directly connect the printer to your computer with an Ethernet cable and configure both devices to communicate with each other. Here's how you can do it:
Connect the Printer to the Computer:
- Plug one end of the Ethernet cable into the LAN port of the Toshiba e-STUDIO 2829A.
- Plug the other end of the Ethernet cable into the Ethernet port of your computer.
Set Static IP Addresses:
- Since there is no router to assign IP addresses dynamically, you need to set static IP addresses for both the printer and the computer.
Configure the Printer’s IP Address:
- Access the printer’s control panel.
- Navigate to the network settings (this can usually be found under Admin or System settings).
- Set a static IP address for the printer. For example, you might use
192.168.0.10
. - Ensure the subnet mask is set to
255.255.255.0
. - Save the settings.
Configure the Computer’s IP Address:
- On your computer, go to the network settings.
- Windows:
- Open Control Panel.
- Go to Network and Sharing Center.
- Click on Change adapter settings.
- Right-click on the Ethernet adapter connected to the printer and select Properties.
- Select Internet Protocol Version 4 (TCP/IPv4) and click Properties.
- Choose "Use the following IP address" and set the IP address to
192.168.0.20
(it should be different from the printer’s IP). - Set the subnet mask to
255.255.255.0
. - Leave the Default Gateway and DNS fields blank.
- Click OK to save the settings.
- Mac:
- Open System Preferences.
- Go to Network.
- Select Ethernet and click on Advanced.
- Go to the TCP/IP tab.
- Set Configure IPv4 to Manually.
- Enter
192.168.0.20
for the IP address and255.255.255.0
for the subnet mask. - Leave the Router field blank.
- Click OK and Apply to save the settings.
- Windows:
- On your computer, go to the network settings.
Add the Printer on the Computer:
- Now, you need to add the printer on your computer.
- Windows:
- Go to Control Panel.
- Select Devices and Printers.
- Click on Add a printer.
- Choose "Add a local printer or network printer with manual settings".
- Select "Create a new port" and choose Standard TCP/IP Port.
- Enter the printer’s IP address (
192.168.0.10
). - Follow the prompts to install the printer driver (you may need the printer driver software from Toshiba's website).
- Mac:
- Open System Preferences.
- Go to Printers & Scanners.
- Click the plus (+) button to add a printer.
- Select the IP tab.
- Enter the printer’s IP address (
192.168.0.10
). - Choose the appropriate protocol (typically HP Jetdirect - Socket).
- Enter a name for the printer and select the appropriate driver.
- Click Add.
- Windows:
- Now, you need to add the printer on your computer.
After completing these steps, your Toshiba e-STUDIO 2829A printer should be set up to print using a LAN cable directly connected to your computer without a router
How to get Ranking of the Students in Excel using RANK Function
=RANK(number,ref,[order]) To rank in descending order, we will use the formula =RANK(B2,($C$5:$C$10),0) If we want unique ranks, we can use...
-
Put the following code in a TXT file and save as "file.cmd" then run the cmd file as administrator. @echo off title Activate Micr...
-
We can install PowerMTA on the server. rpm -ivh /home/PowerMTA-4.0r6.x86_64.rpm You will see the output like this Preparing... #############...
-
# $Id: config 2015-03-24 16:00:00 Jack $ # Sample PowerMTA configuration file # PowerMTA Multiple Virtual PMTA config file sample # # E-mai...