Showing posts with label Finacle. Show all posts
Showing posts with label Finacle. Show all posts

Wednesday, 13 December 2017

Stop Payment Processing in DOP Finacle

Stop payments can be marked as per customer’s request through the menu option HSPP. Stop Payment instructions for a cheque(s) can be entered only if Issue of concerned chequebook has been acknowledged by customer and is duly entered in the system. Therefore, it is necessary that cheque book should be in acknowledged status before any stop payment instructions are entered in the system. The process of HSPP is given below
Menu Shortcut - HSPP
GO 
The following screen will be appeared 
Fuction - S-Stop Pay
A/c ID - ____________
Begin Chq No. - _______
No. Of Leaves - ________
GO
The following screen will be appeared 
Cheque Date - ___________
Reason Code - ___________
Submit 
Verify the Account in HSPPAU Menu in supervisor 
You can also print the report of Cheque stop payment. Select Function Code as print and fill the account no. The report will be print in HPR.

Monday, 1 August 2016

Disable windows password policy

To disable the password complexity policy for Windows Server Core installation? If your Windows system comes with a GUI interface, you change the password policy from within the Group Policy Editor, but the steps are still a bit complicated for a Windows domain controller.
In this tutorial we’ll show you a quick yet simple way to change local / domain password policy from the Command Prompt. This method works with all versions of Windows, including Windows 10, 8, 7, Vista and Windows Server 2012 (R2) / 2008 (R2) / 2003.


How to Change Local/Domain Password Policy from Command Prompt?
If your computer is a domain controller, follow the steps below and you can change the default domain password policy. To change the local password policy on a domain controller, you must boot your server in Directory Services Restore Mode (DSRM) and then perform the steps below:
  1. Open an elevated Command Prompt. If you’ve forgotten the local or domain administrator password and couldn’t log on, try the PCUnlocker bootdisk for bypassing the password.
  2. Type the following command and hit Enter:
    secedit.exe /export /cfg C:\secconfig.cfg
    export-group-policy
    This will dump the local policy or domain policy for the system, including account policies, audit policies, and so on.
  3. Open the C:\secconfig.cfg file with your text editor. For Windows Server Core, you can type notepad.exe in the Command Prompt. When Notepad launches, click the File -> Open menu to open C:\secconfig.cfg.
  4. Now you can view and edit all of the relevant policies as shown below. In this example, we’ll disable the password complexity policy. So we replace PasswordComplexity = 1 to PasswordComplexity = 0, and change the value of MinimumPasswordLength to 0.
    edit-group-policy
  5. When done, save your changes. To load the edited file as your new policy configuration, use the following command:
    secedit.exe /configure /db %windir%\securitynew.sdb /cfg C:\secconfig.cfg /areas SECURITYPOLICY
    update-group-policy
  6. The new password policy will apply to all password changes and new password. After disabling the password complexity policy, you should be able to change Windows account password to whatever you like.