Deprecated: Optional parameter $depth declared before required parameter $output is implicitly treated as a required parameter in /home3/techiclb/public_html/stage.techiearchive.com/wp-content/themes/oceanwp/inc/walker/menu-walker.php on line 360

Warning: Cannot modify header information - headers already sent by (output started at /home3/techiclb/public_html/stage.techiearchive.com/wp-content/themes/oceanwp/inc/walker/menu-walker.php:360) in /home3/techiclb/public_html/stage.techiearchive.com/wp-includes/feed-rss2.php on line 8
Uncategorized Archives - Stage Techie Archive blog https://stage.techiearchive.com/category/uncategorized/ Mon, 29 Jan 2018 16:15:00 +0000 en-US hourly 1 https://wordpress.org/?v=7.0 About UAN portal https://stage.techiearchive.com/about-uan-portal/ Mon, 29 Jan 2018 16:15:00 +0000 https://stage.techiearchive.com/?p=13 Today going to explain about UAN portal, click here to open UAN portal site and understand step by step how to use. Homepage of UAN (Universal Account Number) portal After open above page do login with UAN and password  UAN portal home page will open. In the home page, you will get the summary about your UAN. […]

The post About UAN portal appeared first on Stage Techie Archive blog.

]]>
Today going to explain about UAN portal, click here to open UAN portal site and understand step by step how to use.

Homepage of UAN (Universal Account Number) portal

After open above page do login with UAN and password 

UAN portal home page will open. In the home page, you will get the summary about your UAN. like: uan number, name, date of birth and verification status with aadhaar, pan, bank account etc.


  • How to get UAN card?

You can get your UAN card by click on UAN card link


  • How to change the password?

In the home page click on account setting


After click account setting the password change window will open. In this page, three fields are there. first, you need to fill your current password then enter your new password (Input strong password with at least 6-8 character) and confirm your new password after that click on update button the password will change successfully.

  • How to check contact detail and update those details?

In the menu button click on manage menu button then click on contact details


The contact page will open, on the change contact details page you can your registered mobile number and email id. There is one checkbox for change mobile and change mail id, when you click on this check box the update fields will show and you change your mobile number as well as email id easily after that click on get authorization pin, you will get the ping on the registered mobile number after verifying it the detail will update successfully. 

  • Know about add KYC detail and its status

Navigate to Manage menu and click on KYC 

The KYC page will open. you can add any KYC detail and click on save

Scroll down the page and you get to know the status of your KYC.

  • Know about profile detail
Goto view menu and click profile sub-menu


The profile page will look like below screenshot. in the page, you will see all detail in this site also you change your mobile /email id from the given link. 

  • Know about service history

Navigate to view menu and click on service history

The next page will open service detail page. Here it will show your pf member id detail and its history (eg: establishment name /id, DOJ EPF, DOE EPF etc)


The post About UAN portal appeared first on Stage Techie Archive blog.

]]>
EPF balance passbook https://stage.techiearchive.com/epf-balance-passbook/ Wed, 24 Jan 2018 18:05:00 +0000 https://stage.techiearchive.com/?p=14 Find member passbook In this post, i am going to explain where to get your EPF balance passbook and what is the steps. First, open epfindia website and follow the below steps or you can visit directly member passbook URL click here and follow from step 3. 1. Go to Our Services >> For Employees 2. Inside […]

The post EPF balance passbook appeared first on Stage Techie Archive blog.

]]>
Find member passbook

In this post, i am going to explain where to get your EPF balance passbook and what is the steps.

First, open epfindia website and follow the below steps or you can visit directly member passbook URL click here and follow from step 3.

1. Go to Our Services >> For Employees

2. Inside services click on Member Passbook

3. In the new tab or window, the member passbook login page will open
4. In the member passbook login page enter UAN number as username, password and fill the captcha then press login button.
After successful login on the next page, you will see your all account’s passbook.

The post EPF balance passbook appeared first on Stage Techie Archive blog.

]]>
Find IFSC code https://stage.techiearchive.com/find-ifsc-code/ Thu, 18 Jan 2018 11:15:00 +0000 https://stage.techiearchive.com/?p=15 How to find bank IFSC codeYou can find ifsc code of any bank in india by visiting this site https://www.ifsccodebank.com/  Steps to get an IFSC code After open this above site follow below steps 1. Select bank name from dropdown 2. Select state from dropdown 3. Select district from dropdown 4. Select city from dropdown 5. […]

The post Find IFSC code appeared first on Stage Techie Archive blog.

]]>
How to find bank IFSC code

You can find ifsc code of any bank in india by visiting this site https://www.ifsccodebank.com/ 



Steps to get an IFSC code

After open this above site follow below steps
1. Select bank name from dropdown

2. Select state from dropdown

3. Select district from dropdown


4. Select city from dropdown


5. Select branch name from dropdown


6. Then press search button and you will the bank detail with IFSC code


The post Find IFSC code appeared first on Stage Techie Archive blog.

]]>
Window batch scripts https://stage.techiearchive.com/window-batch-scripts/ Fri, 10 Nov 2017 04:03:00 +0000 https://stage.techiearchive.com/?p=19 Project folder/sub-folder creation script @ECHO OFF rem ############ Author: Prahlad Dutta ############ rem ############ Date: 09/11/2017 ################# rem ############ Description: project folder creation scripts ############ rem Set envrionment variables set PROJECT_DIR=”D:PrahladProject” set BKUP_DIR_NAME=”Backup” set BILL_DIR_NAME=”Bills” set CODEBASE_DIR_NAME=”Codebase” set CONTENT_DIR_NAME=”Content Package” set DEPLOY_DIR_NAME=”Deployment” set DOC_DIR_NAME=”Documents” set HTML_DIR_NAME=”HTML” set WORKSPACE_DIR_NAME=”Workspace” set TESTING_DIR_NAME=”Testing” SET /P project_name=Please enter your […]

The post Window batch scripts appeared first on Stage Techie Archive blog.

]]>

Project folder/sub-folder creation script


@ECHO OFF

rem ############ Author: Prahlad Dutta ############
rem ############ Date: 09/11/2017 #################
rem ############ Description: project folder creation scripts ############

rem Set envrionment variables
set PROJECT_DIR=”D:PrahladProject”
set BKUP_DIR_NAME=”Backup”
set BILL_DIR_NAME=”Bills”
set CODEBASE_DIR_NAME=”Codebase”
set CONTENT_DIR_NAME=”Content Package”
set DEPLOY_DIR_NAME=”Deployment”
set DOC_DIR_NAME=”Documents”
set HTML_DIR_NAME=”HTML”
set WORKSPACE_DIR_NAME=”Workspace”
set TESTING_DIR_NAME=”Testing”

SET /P project_name=Please enter your project name: 
IF “%project_name%”==”” (
ECHO You did not enter your project name! Bye bye!!
echo.
exit
) ELSE (
ECHO Start creating folder for project: %project_name%
mkdir %PROJECT_DIR%%project_name%
echo Project root directory: %PROJECT_DIR%%project_name%, created successfully.
echo ***************Start creating child folders******************
mkdir %PROJECT_DIR%%project_name%%BKUP_DIR_NAME%
mkdir %PROJECT_DIR%%project_name%%BILL_DIR_NAME%
mkdir %PROJECT_DIR%%project_name%%CODEBASE_DIR_NAME%
mkdir %PROJECT_DIR%%project_name%%CONTENT_DIR_NAME%
mkdir %PROJECT_DIR%%project_name%%DEPLOY_DIR_NAME%
mkdir %PROJECT_DIR%%project_name%%DOC_DIR_NAME%
mkdir %PROJECT_DIR%%project_name%%HTML_DIR_NAME%
mkdir %PROJECT_DIR%%project_name%%WORKSPACE_DIR_NAME%
mkdir %PROJECT_DIR%%project_name%%TESTING_DIR_NAME%
echo **********Project folder and subfolder created successfully ******
cd %PROJECT_DIR%%project_name%
echo on
start .

)

Setting environment variables


rem ####envpath.bat######

rem set LOGDIR=”D:prahlad’s Systemprahlad document sectionBackupMy_BackupLogs”
rem set COPYFILE=”C:Usersprahlad.duttaAppDataLocalMicrosoftOutlook*.pst”
REM set COPYTO=”D:prahlad’s Systemprahlad document sectionBackupMy_BackupMail_Backup”
set FILE=”*.pst”

set COPYFILE=”C:Usersprahlad.duttaAppDataLocalMicrosoftOutlook*.pst”
set COPYTO=”D:Prahlad_SystemPrahlad DocumentsBackupMy_BackupMail_Backup”

rem ****seting path for one notebooks****
set NOTEBOOK=”C:Usersprahlad.duttaDocumentsOneNote Notebooks”
set TODIR=”D:Prahlad_SystemPrahlad DocumentsBackupMy_BackupOneNote_Backup”

set ALLFILE=”*”

Batch script for login tracker


@echo off

call envpath.bat
set user=%username%


rem ############## for win 7 32-bit###########
rem For /f “tokens=2-4 delims=/ ” %%a in (‘date /t’) do (set MyDate=%%b-%%a-%%c) 

rem ############## for win 7 64-bit###########
for /f “tokens=1” %%a in (‘date /t’) do (set Mydate=%%a)
set logindate=%Mydate%

for /f %%b in (‘time /t’) do (set Mytime=%%b)
set logintime=%Mytime%

for /f “tokens=2 delims= ” %%c in (‘time /t’) do (set Myzone=%%c)
set timezone=%Myzone%

set afile=%user%_Logindetail_%logindate%.log

REM cd %LOGDIR%
IF EXIST %LOGDIR%%afile% (
echo %user% %logindate% %logintime% %timezone% >> %LOGDIR%%user%_Logindetail_%logindate%.log
) ELSE (
echo Loginname Logindate Logintime  > %LOGDIR%%user%_Logindetail_%logindate%.log
echo ———- ———- ———– >> %LOGDIR%%user%_Logindetail_%logindate%.log
echo %user% %logindate% %logintime% %timezone% >> %LOGDIR%%user%_Logindetail_%logindate%.log
)

Batch script for backup your mail


@echo off
call envpath.bat
rem taskkill /f /im outlook.exe
copy %COPYFILE% %COPYTO%
rem ############## for win 7 32-bit###########
rem For /f “tokens=2-4 delims=/ ” %%a in (‘date /t’) do (set MyDate=%%b-%%a-%%c) 
rem ############## for win 7 64-bit###########
set MyDate=%date%
echo %MyDate%
cd %COPYTO%
D:
“c:Program FilesWinRARRar.exe” a -df -r prahlad.dutta_%MyDate%.rar %FILE%
rem “C:Program Files (x86)WinRARRar.exe” a prahlad.dutta_%MyDate%.rar %FILE%
rem del %FILE%
echo .
rem shutdown -s -f -t 60

The post Window batch scripts appeared first on Stage Techie Archive blog.

]]>