Posts

How to install Foundry Nuke Windows 11

 SINGLE MACHINE 1.Install Your Foundry Product 2.Install FLT7 (If you already have our rlm server working and running , jump to step 8)  3.Stop Foundry License Server 4.Copy the cracked rlm.foundry.exe over the original one (C:\Program Files\The Foundry\LicensingTools7.1\bin\RLM\rlm.foundry.exe)  5.Edit xf_foundry.lic replacing HOST_NAME MAC_ADDRESS PORT . You can get those informations using rlmutil.exe , a simple dos window ipconfig/all   or you can start Foundry License Utility and choose Diagnostics and Run Diagnostics, you will find your hostname, your mac address (System ID)     PORT is by default 5053 if you dont put any (dont forget to delete the word PORT then if you dont want to specify one) . If you need more infos read RLM manual. 6.Copy the xf_foundry.lic to C:\ProgramData\The Foundry\RLM or C:\Program Files\The Foundry\LicensingTools7.1\bin\RLM\ 7.Restart RLM Server you can do that from services or just with Foundry License Utility (the b...

Autodesk Maya 2024 Install Windows 11

 1) Install Autodesk Application - Do Not Start it yet  2) Install the Autodesk network license manager (v11.18.0) from crack folder (NLM.msi Update 8)      -Default install is "C:\Autodesk\Network License Manager"     -Stop any running instance (lmgrd, adskflex) if you have one     -Replace adskflex.exe by cracked one   3) Replace the version.dll - \Program Files (x86)\Common Files\Autodesk Shared\AdskLicensing\Current\AdskLicensingAgent\ 4) Edit lic.dat and change HOSTNAME and MAC to suit your configuration (if you are not sure start LMTOOLS Utility and go to     System Settings, your HOSTNAME and MAC will be listed)    You can change vendor port too and add your previous licenses of course :)    Save lic.dat where you want (we suggest to "C:\Autodesk\Network License Manager" folder) 5) You have 2 options:     1)Start Network License Manager manually :     Run the license manager w...

AWS Site to Site VPN Configuration

AWS Site to Site VPN Configuration:- 1.      Create VPC in Mumbai          Subnet: - 10.1.0.0/16   2.      Create VPC   US East (N. Virginia)            Subnet: - 10.2.0.0./16   3.      Create Customer Gateway dummy in Mumbai         Customer Gateway IP 100.64.0.1 4.      Create Virtual private gateways in Mumbai 5.      Attached Gateway in VPC 6. Go to Route tables and attached Route                     propagation all subnet 7.      Create VPN Connection in Mumbai      PreShare Key :-    bLx6QrEpLHnfp6yPo8Rqm 8.        Create Virtual private gateways i...

Site-to-Site VPN Connection between Azure and AWS Demo

  Site-to-Site VPN Connection between Azure and AWS Demo Step 1: Configuring Azure Crate a resource group on Azure to deploy the resources on that Resource Group Name: Azure-Aws Region: East-US Create Virtual Network Resource Group Name: Azure-Aws Region: East-US VNet Name: vnet-azure VNet IPv4 Address Space: 172.20.0.0/16 Subnet Name: subnet-01 Subnet IPv4 Address Space: 172.20.1.0/24 Create the VPN Gateway VPN Gateway Name: VPN-Azure-Aws Region: East-US Gateway Type: VPN SKU: default Generation: Generation 1 Virtual Network: vnet-azure Public IP Address: pip-vpn-Azure-Aws Public IP Address Type: default Assignment: Staic Enable active-active mode: Disabled Configure BGP: Disabled Configuring AWS Create the Virtual Private Cloud (VPC) in AWS Name: my-awsvpc-01 IPv4 CIDR: 10.20.0.0/16 Create a subnet inside the VPC (Virtual Network) Name: my-awssubnet-01 VPC Name: my-vpc-01 VPC IPv...

buildspec.yml code pipeline

 version: 0.2 phases:   install:     runtime-versions:       nodejs: 16     commands:       - npm install -g @angular/cli@9.0.6   pre_build:     commands:       - npm install   build:     commands:       - ng build --prod       - aws cloudfront create-invalidation --distribution-id {cloudfront id} --paths '/*' artifacts:   base-directory: dist/{project name}   files:     - '**/*' version: 0.2 phases:   install:     runtime-versions:       nodejs: 16     commands:       - npm install -g @angular/cli@9.0.6   pre_build:     commands:       - npm install   build:     commands:       - ng build --prod       - aws cloudfront create-invalidation --distribution-id EGVGG05FLOT0Z --paths '/*' artifacts:   base-d...

Fix EC2 start and stop user policy

 {     "Version": "2012-10-17",     "Statement": [         {             "Sid": "VisualEditor0",             "Effect": "Allow",             "Action": "ec2:Describe*",             "Resource": "*"         },         {             "Sid": "VisualEditor1",             "Effect": "Allow",             "Action": [                 "ec2:RebootInstances",                 "ec2:StartInstances",                 "ec2:StopInstances"             ],             "Resource": [                 "arn:...

Create a single IAM user to access only specific S3 bucket

 Create a single IAM user to access only specific S3 bucket {   "Version": "2012-10-17",   "Statement": [     {       "Sid": "Stmt1528735049406",       "Action": [         "s3:DeleteObject",         "s3:GetObject",         "s3:HeadBucket",         "s3:ListBucket",         "s3:ListObjects",         "s3:PutObject"       ],       "Effect": "Allow",       "Resource": "arn:aws:s3:::YOURBUCKETNAME"     }   ] } {     "Version": "2012-10-17",     "Statement": [         {             "Sid": "BucketOperations",             "Effect": "Allow",             "Action": "s3:ListBucket*",             "Resource": "arn...