Monday, May 3, 2021

Inspection/ Survey Company Management Software (GMS International)

Cargo

Cargo consignment & Vessels Inspection/ Survey Company Management Software with Ship & Vessels information, Customers & Orders management, Financial Accounting System, HR Management, Duty & Payroll management, Software administration and security management. To know more details please call us: +88 01613987363 or send an email to info@extreme.com.bd More details at: https://extreme.com.bd/Software/inspection-survey-company-management-software


The software was mainly developed for GMS International- A leading survey-inspection company in Bangladesh Menu Architecture: • • Dashboard ​ ​ • • HRM & Payroll # Setups • Employee Departments • Sections • Designations • Duty Shifts • Work Types • Agents/ Introducer • Employee Setup • Employee Documents • Duty • Duty Entry • Payment Entry • Monthly Attendance # Reports • List of Employees • Performance Analysis • Salary Sheet • Pay-Slip • Employee Ledger • Attendance History • Employee Applications • Attendance or Duty Report • Duty Report-Individual • Mother Vessel Wise Expense • Point Wise Expense Sheet • Wages-Sheet-Individual • Wages-Sheet ​ ​ ​ • CRM ​ • Setups • Customers • Supplier Categories • Vendors/Suppliers • Vessels • Survey Type • Lighter's Light Survey • Locations/ Zones • Ghat Setup • CNF Agents • Godown Setup • Cargo Setup • Delivery Points ​ # Orders • New Work Order • Mother Vessel Draft Survey • Lighter Draft Survey • Lighter Quantification • Assign Lighter • Loading Info. • Order Delivery • Books • Books Info Setup • Book Issue • Reports • Qty Calc./ Lighter History • Lighter History Summery • Invoice By Date Range • Invoice By Payment Status • Search Invoice • Credit List • Customer Ledger • Sales Collection History • Order wise Profit • Document Library • Employees • PO • Purchase • Others • Search Doc Library ​ ​ ​ ​ • Purchase ​ • Setups • Supplier Categories • Manufacturers • Import Agents ​ • Insurence Company • Purchase Zones • Referrers • Local Purchase • Purchase Entry • Purchase Edit • Purchase Return • Purchase Payment • Cheque Processing • Adjustment • LC • LC Expense Heads • LC General Info • LC Status Updates • LC Amendment • LC Expenses • LC Finalization • LC Payment • LC Item Return • Purchase Reports • Purchase by Invoice • Purchase by Products • Supplier Ledger • Supplier Credit List • Party Payment History • Search Purchase • LC Reports • LC By Date Range • LC Detail View • Item Costing Comparison • LC Items History • LC Payment History • Search LC Info ​ ​ ​ ​ ​ ​ ​ • Production ​ • Setups • Sections • Machines • Lines • Shifts • Operations • Colors • Production Purposes • Standard Production • Production • Shearing • Offset Printing • Power Press • Round Tin • Plastic Container • Screen Print • Plastic Finishing • Reports • Stock Register • Hourly Production Report • Employee Efficiency Report • Production by Date • Production by Sections ​ ​ • Accounts ​ • Setups • Subsidiary Accounts • Control Accounts • Accounts Head Setup • Particulars • Bank Account Setup • Data Entry • Billing • Voucher Entry • Balance Adjustment • Acc Linking • Reports • Ledger • Chart of Accounts • Income Statement • Trial Balance • Balance Sheet • Bank Book • A/C Group Ledger • Sub A/C Ledger • Control A/C Ledger • A/C Head Ledger • Trade Receivables • Bank A/C Summary • Agent Summary • Agent Duty Summary • Cancelled Vouchers • Voucher by Date ​ ​ ​ • Facts Module ​ • Declarations • Price Declaration • Consumptions • Consumption Statistics • Print Impresion • Reduce/MTT/Thiner • Ink Consumption • Coating, Varnish, Sizeetc • Measurements • Tin Sheet Measurement • Standard Height Spec. ​ ​ • Admin ​ • Setups • Country Setup • City Setup • Company Info • Form Settings • Notice & Messages • Post News to Scroll • Send Message to User • Edit News • All News Updates • Received Messages • Users & Security • Create Login Profile • User Permissions • Block User • Reset Password • User Login History • Admin Reports • Important Documents • Maintenance • Data Backup

Tuesday, March 30, 2021

XFF is one of the best freight forwarding management software in Bangladesh developed by Extreme Solutions, Chittagong.

XFF is one of the best freight forwarding management software in Bangladesh developed by Extreme Solutions, Chittagong.

XFF is one of the best freight forwarding management software in Bangladesh developed by Extreme Solutions, Chittagong.


Extreme Solutions is specialized for ERP & Accounting software development services & solutions to the companies in Bangladesh.

Wednesday, November 20, 2019

Extend Windows Server 2019 RDS Licensing Server

If your RD Licensing Server has got expired you may want to increase the time to use Remote Desktop Connections for Windows Server 2019. An RD Licensing server is required for continuous operation. A Remote Desktop Session Host server can operate without a license server for 120 days after the initial start-up.

To do that simply run bellow script in your RDS server within PowerShell of your Windows 2019 Server. The script is interactive and will tell you how many days are left (very handy as you can look it up extremely quickly this way) and lets you choose if you want to reset the time or not.


## RESET RDP SERVER GRACE PERIOD ---> Run bellow code in Powershell

## This Script is intended to be used for Querying remaining time and resetting Terminal Server (RDS) Grace Licensing Period to Default 120 Days. 
## Developed by Prakash Kumar (prakash82x@gmail.com) May 28th 2016 
## www.adminthing.blogspot.com 
## Disclaimer: Please test this script in your test environment before executing on any production server. 
## Author will not be responsible for any misuse/damage caused by using it. 

Clear-Host 
$ErrorActionPreference = "SilentlyContinue" 

## Display current Status of remaining days from Grace period. 
$GracePeriod = (Invoke-WmiMethod -PATH (gwmi -namespace root\cimv2\terminalservices -class win32_terminalservicesetting).__PATH -name GetGracePeriodDays).daysleft 
Write-Host -fore Green ====================================================== 
Write-Host -fore Green 'Terminal Server (RDS) grace period Days remaining are' : $GracePeriod 
Write-Host -fore Green ======================================================   
Write-Host 
$Response = Read-Host "Do you want to reset Terminal Server (RDS) Grace period to Default 120 Days ? (Y/N)" 

if ($Response -eq "Y") { 
## Reset Terminal Services Grace period to 120 Days 

$definition = @" 
using System; 
using System.Runtime.InteropServices;  
namespace Win32Api 

    public class NtDll 
    { 
        [DllImport("ntdll.dll", EntryPoint="RtlAdjustPrivilege")] 
        public static extern int RtlAdjustPrivilege(ulong Privilege, bool Enable, bool CurrentThread, ref bool Enabled); 
    } 

"@  

Add-Type -TypeDefinition $definition -PassThru 

$bEnabled = $false 

## Enable SeTakeOwnershipPrivilege 
$res = [Win32Api.NtDll]::RtlAdjustPrivilege(9, $true, $false, [ref]$bEnabled) 

## Take Ownership on the Key 
$key = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey("SYSTEM\CurrentControlSet\Control\Terminal Server\RCM\GracePeriod", [Microsoft.Win32.RegistryKeyPermissionCheck]::ReadWriteSubTree,[System.Security.AccessControl.RegistryRights]::takeownership) 
$acl = $key.GetAccessControl() 
$acl.SetOwner([System.Security.Principal.NTAccount]"Administrators") 
$key.SetAccessControl($acl) 

## Assign Full Controll permissions to Administrators on the key. 
$rule = New-Object System.Security.AccessControl.RegistryAccessRule ("Administrators","FullControl","Allow") 
$acl.SetAccessRule($rule) 
$key.SetAccessControl($acl) 

## Finally Delete the key which resets the Grace Period counter to 120 Days. 
Remove-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\RCM\GracePeriod' 

write-host 
Write-host -ForegroundColor Red 'Resetting, Please Wait....' 
Start-Sleep -Seconds 10  

  } 

Else  
    { 
Write-Host 
Write-Host -ForegroundColor Yellow '**You Chose not to reset Grace period of Terminal Server (RDS) Licensing' 
  } 

## Display Remaining Days again as final status 
tlsbln.exe 
$GracePost = (Invoke-WmiMethod -PATH (gwmi -namespace root\cimv2\terminalservices -class win32_terminalservicesetting).__PATH -name GetGracePeriodDays).daysleft 
Write-Host 
Write-Host -fore Yellow ===================================================== 
Write-Host -fore Yellow 'Terminal Server (RDS) grace period Days remaining are' : $GracePost 
Write-Host -fore Yellow ===================================================== 

## Cleanup of Variables 
Remove-Variable * -ErrorAction SilentlyContinue

## https://mangolassi.it/topic/19353/reset-120-day-grace-period-for-windows-rds-server-with-powershell

Wednesday, October 16, 2019

CR4VS: Free Downloads of SAP Crystal Reports for Visual Studio old versions

CR4VS

Free Downloads of SAP Crystal Reports for Visual Studio all versions updates for the currently supported releases of SAP Crystal Reports 13.0.2000.0 (SP-18, SP-19, SP-20) and 13.0.3500.0  (SP-21, SP-22, SP-23) for Visual Studio 2010, 2012, 2015, 2017 and 2019 all versions.

If you are looking for Crystal reports server hosting company please visit the best Crystal Reports Hosting Provider in Bangladesh.

Download Link
Type
Size
Published
Product Version
Software Type

ZIP
157 MB
11.04.2019
SAP Crystal Reports, developer version 18 for Microsoft Visual Studio
CV_SP
ZIP
74.4 MB
11.04.2019
SAP Crystal Reports, developer version 18 for Microsoft Visual Studio
CV_SP
ZIP
82.3 MB
11.04.2019
SAP Crystal Reports, developer version 18 for Microsoft Visual Studio
CV_SP
EXE
304.3 MB
11.04.2019
SAP Crystal Reports, developer version 18 for Microsoft Visual Studio
CV_SP
ZIP
78 MB
11.04.2019
SAP Crystal Reports, developer version 18 for Microsoft Visual Studio
CV_SP
ZIP
16 MB
11.04.2019
SAP Crystal Reports, developer version 18 for Microsoft Visual Studio
CV_SP
ZIP
157.6 MB
11.04.2019
SAP Crystal Reports, developer version 19 for Microsoft Visual Studio
CV_SP
ZIP
74.8 MB
11.04.2019
SAP Crystal Reports, developer version 19  for Microsoft Visual Studio
CV_SP
ZIP
82.4 MB
11.04.2019
SAP Crystal Reports, developer version 19  for Microsoft Visual Studio
CV_SP
EXE
304.9 MB
11.04.2019
SAP Crystal Reports, developer version 19  for Microsoft Visual Studio
CV_SP


ZIP
82.4 MB
11.04.2019
SAP Crystal Reports, developer version 19  for Microsoft Visual Studio
CV_SP
EXE
304.9 MB
11.04.2019
SAP Crystal Reports, developer version  19 for Microsoft Visual Studio
CV_SP
ZIP
78.5 MB
11.04.2019
SAP Crystal Reports, developer version 19  for Microsoft Visual Studio
CV_SP
ZIP
16 MB
11.04.2019
SAP Crystal Reports, developer version 19  for Microsoft Visual Studio
CV_SP
ZIP
157.6 MB
11.04.2019
SAP Crystal Reports, developer version  20 for Microsoft Visual Studio
CV_SP
ZIP
74.8 MB
11.04.2019
SAP Crystal Reports, developer version for 20  Microsoft Visual Studio
CV_SP
ZIP
82.4 MB
11.04.2019
SAP Crystal Reports, developer version for 20  Microsoft Visual Studio
CV_SP
EXE
304.9 MB
11.04.2019
SAP Crystal Reports, developer version for 20  Microsoft Visual Studio
CV_SP
ZIP
78.5 MB
11.04.2019
SAP Crystal Reports, developer version for 20  Microsoft Visual Studio
CV_SP
ZIP
16 MB
11.04.2019
SAP Crystal Reports, developer version for 20  Microsoft Visual Studio
CV_SP


ZIP
16 MB
11.04.2019
SAP Crystal Reports, developer version for 20  Microsoft Visual Studio
CV_SP
ZIP
185.4 MB
11.04.2019
SAP Crystal Reports, developer version for 21  Microsoft Visual Studio
CV_SP
ZIP
92.9 MB
11.04.2019
SAP Crystal Reports, developer version for 21  Microsoft Visual Studio
CV_SP
ZIP
92.3 MB
11.04.2019
SAP Crystal Reports, developer version for 21  Microsoft Visual Studio
CV_SP
EXE
343.9 MB
11.04.2019
SAP Crystal Reports, developer version for 21  Microsoft Visual Studio
CV_SP
ZIP
127.1 MB
11.04.2019
SAP Crystal Reports, developer version for 21  Microsoft Visual Studio
CV_SP
ZIP
23.5 MB
11.04.2019
SAP Crystal Reports, developer version for 21  Microsoft Visual Studio
CV_SP
ZIP
184.6 MB
05.04.2019
SAP Crystal Reports, developer version for 21 for  Microsoft Visual Studio
CV_SP
ZIP
92.5 MB
05.04.2019
SAP Crystal Reports, developer version 22  for Microsoft Visual Studio
CV_SP
ZIP
91.9 MB
05.04.2019
SAP Crystal Reports, developer version 22  for Microsoft Visual Studio
CV_SP


ZIP
91.9 MB
05.04.2019
SAP Crystal Reports, developer version 22  for Microsoft Visual Studio
CV_SP
EXE
342.8 MB
05.04.2019
SAP Crystal Reports, developer version 22  for Microsoft Visual Studio
CV_SP
ZIP
126.7 MB
05.04.2019
SAP Crystal Reports, developer version 22  for Microsoft Visual Studio
CV_SP
ZIP
23.5 MB
05.04.2019
SAP Crystal Reports, developer version 22  for Microsoft Visual Studio
CV_SP
ZIP
184.6 MB
05.04.2019
SAP Crystal Reports, developer version 23 for Microsoft Visual Studio
CV_SP
ZIP
92.4 MB
05.04.2019
SAP Crystal Reports, developer version 23 for Microsoft Visual Studio
CV_SP
ZIP
91.9 MB
05.04.2019
SAP Crystal Reports, developer version23  for Microsoft Visual Studio
CV_SP
EXE
342.8 MB
05.04.2019
SAP Crystal Reports, developer version 23 for Microsoft Visual Studio
CV_SP
ZIP
126.7 MB
05.04.2019
SAP Crystal Reports, developer version 23 for Microsoft Visual Studio
CV_SP
ZIP
23.5 MB
05.04.2019
SAP Crystal Reports, developer version 23 for Microsoft Visual Studio
CV_SP


ZIP
23.5 MB
05.04.2019
SAP Crystal Reports, developer version 23 for Microsoft Visual Studio
CV_SP
ZIP
184.6 MB
05.04.2019
SAP Crystal Reports, developer version 24 for Microsoft Visual Studio
CV_SP
ZIP
92.5 MB
05.04.2019
SAP Crystal Reports, developer version 24 for Microsoft Visual Studio
CV_SP
ZIP
91.9 MB
05.04.2019
SAP Crystal Reports, developer version 24 for Microsoft Visual Studio
CV_SP
EXE
342.9 MB
05.04.2019
SAP Crystal Reports, developer version 24 for Microsoft Visual Studio
CV_SP
ZIP
126.7 MB
05.04.2019
SAP Crystal Reports, developer version 24 for Microsoft Visual Studio
CV_SP
ZIP
23.5 MB
05.04.2019
SAP Crystal Reports, developer version 24 for Microsoft Visual Studio
CV_SP
ZIP
198.7 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP
ZIP
99.4 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP
MSI
104.5 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP


ZIP
198.7 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP
ZIP
99.4 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP
MSI
104.5 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP
ZIP
99 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP
MSI
103.9 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP
EXE
359.3 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP
ZIP
133.6 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP
ZIP
25.5 MB
17.05.2019
SAP Crystal Reports, developer version 25 for Microsoft Visual Studio
CV_SP



If you are looking for Crystal reports server hosting please visit the best Crystal Reports Hosting Provider in Bangladesh. If you are looking for updates for the following products, please click on the links below:
SAP Crystal Reports, developer version for Microsoft Visual Studio — Please go here
SAP Crystal Reports, version for Eclipse — Please go here
SAP Crystal Reports Viewer — Please go here

For purchasing SAP Products, please access them through our SAP Support Portal (requires log-on and an active maintenance agreement; if unsure, please contact our Customer Interaction Center).

Like to shopping online? Are you from Bangladesh? If so please visit the Best Online Shopping Website in Chittagong. Other Important information and links.

Reminder: Please close all instances of your product before attempting to install a patch.
Software Type Definitions (such as Support Packs, Service Packs, and Fix Packs) — Find out more
Product Documentation (such as guides, release notes, fixed issues, etc) — Please go here
Important: Are you using an OEM version of Crystal Reports or Microsoft Business Solutions CRM 1.x solution? If so, please contact the software company that bundles SAP Crystal Reports within their software to determine how to patch or upgrade your SAP Crystal Reports.