(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "ef67uoeyji");
We help companies to fulfill their talent needs by providing Full time or part time dedicated remote (or local, in some areas) techs exclusively for them at a fraction of local cost. The techs will work as your remote staff during your preferred time zone whether it’s business or after-hours. We have a pool of ready to deploy Level 1, 2 & 3 system engineers who are trained in corporate environments. We also help our customers to fulfill other technical positions such as Service desk, VOIP, Network engineers, customer support, Cloud & DevOps through our sourcing process.
Not having enough In-house technical capabilities is the biggest business problem that many companies facing and this often leads to quality and losing contracts. Drastic changes in IT infrastructure and technology demands higher skillset techs but the Costs associated with local resources have skyrocketed due to increased demand. Considering remote staffing can reduce your operational costs by half and at the same time ensure quality support and extended support coverages to the customers.
INOV Tech MSSP’s Dedicated Tech solution can help your IT service business to onboard high-quality techs as per your skill set requirements and that too at a fraction of localhost. We have an in-house talent pool with corporate-trained techs to help our customers onboard quickly. We can also assist you in hiring for specific roles through our recruitment process, which takes around 20-45 days for onboarding. Once hired, our backend training sessions, NOC processes, and the latest MSP tools are extended for them to be proficient enough to handle the challenges within any industry verticals.
Understanding the market circumstances and its necessities, INOV Tech MSSP remote staffing capability effectively solves your staffing & talent requirements with our off-site skilled IT team to get the support your customers need faster and secure.
Client Requirement
Once the client gives the overview of the requirement, INOV Tech MSSP schedule a call to interact with them to understand their challenges & requirements in detail
Evaluating Resources
We evaluate the relevant skill sets needed to successfully deliver the results. The evaluation process begins with an assessment of our internal resources. If we do not have the expertise internally, we source the talents via our external hiring process
Training
Once the remote team is shortlisted by the client, we put the team under hands-on training sessions in which they go through different modes like video tutorials and training classes to equip the desired skill and learning for the job
Onboarding
In the onboarding phase, a checklist will be shared with the client to get an understanding of the client environment
Deploy
After the onboarding, the team makes their switch to execution, working on the deliverables agreed with the client by following a couple of standard processes
QA Reports
Once the project is commenced, INOV Tech MSSP shares with the client to showcase the progress of our engagement with them
$.ajaxSetup({
contentType: 'application/json'
});
$(document).ready(function(){
$('#nocForm').submit(function (e) {
e.preventDefault();
var mailid = $('#email').val();
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if($("#g-recaptcha-response").val()==""){
$('.google_recaptcha_error').show();
}else{
$('.google_recaptcha_error').hide();
if(!(emailReg.test( mailid ))){
$('#mailid_val_error_msg').show();
$('#mailid_error_msg').hide();
}
else{
$('#mailid_val_error_msg').hide();
var domain_name = mailid.split("@");
var domain = domain_name[1].split(".");
let standard_domains = ['gmail','yahoo','google','outlook','msn','hotmail'];
if(true == standard_domains.includes(domain[0])){
$('#mailid_error_msg').show();
}
else{
$('#mailid_error_msg').hide();
data=[
{
"name": "firstname",
"value": $("input[name='firstname']").val(),
},
{
"name": "lastname",
"value": $("input[name='lastname']").val(),
},
{
"name": "company",
"value": $("input[name='company']").val(),
},
{
"name": "email",
"value": $("input[name='email']").val(),
},
{
"name": "country",
"value": $("input[name='country']").val(),
},
];
dataToHubspotNOC(data);
}
}
}
});
});
function dataToHubspotNOC(fields){
// Create the new request
var xhr = new XMLHttpRequest();
var url = 'https://api.hsforms.com/submissions/v3/integration/submit/8189631/01d3f58a-376c-4fb5-abb3-cc05941620cf'
// Example request JSON:
var data = {
"fields": fields,
"legalConsentOptions":{ // Include this object when GDPR options are enabled
"consent":{
"consentToProcess":true,
"text":"I agree to allow Example Company to store and process my personal data.",
"communications":[
{
"value":true,
"subscriptionTypeId":999,
"text":"I agree to receive marketing communications from Example Company."
}
]
}
}
}
var final_data = JSON.stringify(data)
xhr.open('POST', url);
// Sets the value of the 'Content-Type' HTTP request headers to 'application/json'
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == 200) {
var result = xhr.responseText;
result =JSON.parse(result);
var text=result.inlineMessage; //console.log(text);
$('#resulthub').html(text); // $('#resulthub').css("display","block");
var pdfurls = $('#resulthub').find('a').attr('href');
var link=document.createElement('a');
document.body.appendChild(link);
link.href=pdfurls;
link.setAttribute("target", "_blank");
link.click();
$('#nocForm').trigger("reset");
$("#exampleModal").modal('hide');
//alert(xhr.responseText); // Returns a 200 response if the submission is successful.
} else if (xhr.readyState == 4 && xhr.status == 400){
alert(xhr.responseText); // Returns a 400 error the submission is rejected.
} else if (xhr.readyState == 4 && xhr.status == 403){
alert(xhr.responseText); // Returns a 403 error if the portal isn't allowed to post submissions.
} else if (xhr.readyState == 4 && xhr.status == 404){
alert(xhr.responseText); //Returns a 404 error if the formGuid isn't found
}
}
// Sends the request
xhr.send(final_data)
}
$.ajaxSetup({
contentType: 'application/json'
});
$(document).ready(function(){
$('#helpdeskForm').submit(function (e) {
e.preventDefault();
var mailid = $('#email').val();
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if($("#g-recaptcha-response").val()==""){
$('.google_recaptcha_error').show();
}else{
$('.google_recaptcha_error').hide();
if(!(emailReg.test( mailid ))){
$('#mailid_val_error_msg').show();
$('#mailid_error_msg').hide();
}
else{
$('#mailid_val_error_msg').hide();
var domain_name = mailid.split("@");
var domain = domain_name[1].split(".");
let standard_domains = ['gmail','yahoo','google','outlook','msn','hotmail'];
if(true == standard_domains.includes(domain[0])){
$('#mailid_error_msg').show();
}
else{
$('#mailid_error_msg').hide();
data=[
{
"name": "firstname",
"value": $("input[name='firstname']").val(),
},
{
"name": "lastname",
"value": $("input[name='lastname']").val(),
},
{
"name": "company",
"value": $("input[name='company']").val(),
},
{
"name": "email",
"value": $("input[name='email']").val(),
},
{
"name": "country",
"value": $("input[name='country']").val(),
},
];
console.log(data);
dataToHubspotHelpdesk(data);
}
}
}
});
});
function dataToHubspotHelpdesk(fields){
// Create the new request
var xhr = new XMLHttpRequest();
var url = 'https://api.hsforms.com/submissions/v3/integration/submit/8189631/39e36377-91c8-44cd-b147-9cef0b5a5208'
// Example request JSON:
var data = {
"fields": fields,
"legalConsentOptions":{ // Include this object when GDPR options are enabled
"consent":{
"consentToProcess":true,
"text":"I agree to allow Example Company to store and process my personal data.",
"communications":[
{
"value":true,
"subscriptionTypeId":999,
"text":"I agree to receive marketing communications from Example Company."
}
]
}
}
}
var final_data = JSON.stringify(data)
xhr.open('POST', url);
// Sets the value of the 'Content-Type' HTTP request headers to 'application/json'
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == 200) {
var result = xhr.responseText;
result =JSON.parse(result);
var text=result.inlineMessage;
$('#resulthub').html(text);
var pdfurls = $('#resulthub').find('a').attr('href');
var link=document.createElement('a');
document.body.appendChild(link);
link.href=pdfurls ;
link.setAttribute("target", "_blank");
link.click();
$('#helpdeskForm').trigger("reset");
$("#exampleModal").modal('hide');
//alert(xhr.responseText); // Returns a 200 response if the submission is successful.
} else if (xhr.readyState == 4 && xhr.status == 400){
alert(xhr.responseText); // Returns a 400 error the submission is rejected.
} else if (xhr.readyState == 4 && xhr.status == 403){
alert(xhr.responseText); // Returns a 403 error if the portal isn't allowed to post submissions.
} else if (xhr.readyState == 4 && xhr.status == 404){
alert(xhr.responseText); //Returns a 404 error if the formGuid isn't found
}
}
// Sends the request
xhr.send(final_data)
}
Round the Clock Reliable Services
to Streamline, Upscale and Augment your
Security & IT Operations.
contact@mssp.inov.cm
+237 699 499 851
+237 679 424 164
Douala – Cameroon
Copyright ©2023 INOV Cameroon All Rights Reserved